diff options
Diffstat (limited to 'msdos/bin2c.c')
-rw-r--r-- | msdos/bin2c.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/msdos/bin2c.c b/msdos/bin2c.c index a6a3c8874810..26d90083fbfb 100644 --- a/msdos/bin2c.c +++ b/msdos/bin2c.c @@ -3,7 +3,7 @@ #include <stdarg.h> #include <time.h> -static void Abort (char *fmt,...) +static void Abort (const char *fmt,...) { va_list args; va_start (args, fmt); @@ -27,7 +27,7 @@ int main (int argc, char **argv) fprintf (outFile, "/* data statements for file %s at %.24s */\n" - "/* Generated by BIN2C, G.Vanem 1995 */\n", + "/* Generated by BIN2C, G. Vanem 1995 */\n", argv[1], ctime(&now)); i = 0; |