summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErwan Velu <erwan.velu@free.fr>2009-03-20 23:02:05 +0100
committerErwan Velu <erwan.velu@free.fr>2009-03-20 23:02:05 +0100
commit2457bc3c938309b49e689c4853c2b55339256293 (patch)
treebbb19bab2ef10ebbc52d99ad7a6cadea3dbcdc57
parent26c171bfc25c17ddbf7230cf40c33270244eea36 (diff)
downloadsyslinux-2457bc3c938309b49e689c4853c2b55339256293.tar.gz
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
-rw-r--r--com32/hdt/hdt-common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/com32/hdt/hdt-common.h b/com32/hdt/hdt-common.h
index bb18ca28..99742f35 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);\
}\