From babd516db46c990064d94930829556a9e1e58ce6 Mon Sep 17 00:00:00 2001 From: Kenneth J Davis Date: Fri, 7 Jan 2005 21:03:00 +0000 Subject: [PATCH] fix warning to not include garbage chars git-svn-id: https://svn.code.sf.net/p/freedos/svn/kernel/branches/UNSTABLE@1088 6ac86273-5f31-0410-b378-82cca8765d1b --- sys/sys.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/sys.c b/sys/sys.c index 1fa7f17..1417889 100644 --- a/sys/sys.c +++ b/sys/sys.c @@ -1325,7 +1325,7 @@ void put_boot(SYSOptions *opts) { /* load segment hard coded to 0x70 in oem compatible boot sector */ if (opts->kernel.loadseg != 0x70) - printf("%s: Warning: ignoring load segment, compat bs always uses 0x70!\n"); + printf("%s: Warning! ignoring load segment, compat bs always uses 0x70!\n", pgm); bsBiosMovOff = 0x4F; } }