From 2457bc3c938309b49e689c4853c2b55339256293 Mon Sep 17 00:00:00 2001 From: Erwan Velu Date: Fri, 20 Mar 2009 23:02:05 +0100 Subject: [PATCH] hdt: Fixing more_printf to display a proper \n Impact: Improve the visibility of the message more_printf could have printed that message without any \n --- com32/hdt/hdt-common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/com32/hdt/hdt-common.h b/com32/hdt/hdt-common.h index bb18ca2..99742f3 100644 --- a/com32/hdt/hdt-common.h +++ b/com32/hdt/hdt-common.h @@ -46,7 +46,7 @@ extern int display_line_nb; #define more_printf(...) do {\ if (display_line_nb == 23) {\ - printf("Press any key to continue\n");\ + printf("\nPress any key to continue\n");\ display_line_nb=0;\ get_key(stdin, 0);\ }\ -- 2.7.4