diff --git a/src/winio.c b/src/winio.c
index fbe00f146220b9ff03edc1cb2349476a9b741f9e..87e593064c3907dfa04f6fc92b2b7a3d8673eedf 100644
--- a/src/winio.c
+++ b/src/winio.c
@@ -3211,7 +3211,7 @@ void dump_buffer_reverse(void)
     const filestruct *fileptr = filebot;
 
     while (fileptr != NULL) {
-	fprintf(stderr, "(%lu) %s\n", (unsigned long)fileptr->lineno, fileptr->data);
+	fprintf(stderr, "(%d) %s\n", fileptr->lineno, fileptr->data);
 	fileptr = fileptr->prev;
     }
 }