From 5dfaa3991c061ed08363c80daabd183afdaa6556 Mon Sep 17 00:00:00 2001 From: Amine Khaldi Date: Fri, 15 Mar 2013 14:51:02 +0000 Subject: [PATCH] [FREELDR] * Fix a format specifiers. svn path=/trunk/; revision=58504 --- reactos/boot/freeldr/freeldr/inifile/parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/boot/freeldr/freeldr/inifile/parse.c b/reactos/boot/freeldr/freeldr/inifile/parse.c index 8af3080f57f..ce9dbdfeb5a 100644 --- a/reactos/boot/freeldr/freeldr/inifile/parse.c +++ b/reactos/boot/freeldr/freeldr/inifile/parse.c @@ -122,7 +122,7 @@ BOOLEAN IniParseFile(PCHAR IniFileData, ULONG IniFileSize) // First check to make sure we're inside a [section] if (CurrentSection == NULL) { - printf("Error: freeldr.ini:%ld: Setting '%s' found outside of a [section].\n", CurrentLineNumber, IniFileLine); + printf("Error: freeldr.ini:%lu: Setting '%s' found outside of a [section].\n", CurrentLineNumber, IniFileLine); printf("Press any key to continue...\n"); MachConsGetCh(); CurrentLineNumber++;