Author: hpoussin
Date: Mon Nov 12 12:57:58 2007
New Revision: 30375
URL:
http://svn.reactos.org/svn/reactos?rev=30375&view=rev
Log:
Small cleanup
Modified:
trunk/reactos/boot/freeldr/freeldr/freeldr.c
trunk/reactos/boot/freeldr/freeldr/inifile/inifile.c
trunk/reactos/boot/freeldr/freeldr/ui/noui.c
Modified: trunk/reactos/boot/freeldr/freeldr/freeldr.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/freel…
==============================================================================
--- trunk/reactos/boot/freeldr/freeldr/freeldr.c (original)
+++ trunk/reactos/boot/freeldr/freeldr/freeldr.c Mon Nov 12 12:57:58 2007
@@ -32,8 +32,7 @@
if (!UiInitialize(FALSE))
{
- printf("Press any key to reboot.\n");
- MachConsGetCh();
+ UiMessageBoxCritical("Unable to initialize UI.\n");
return;
}
Modified: trunk/reactos/boot/freeldr/freeldr/inifile/inifile.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/inifi…
==============================================================================
--- trunk/reactos/boot/freeldr/freeldr/inifile/inifile.c (original)
+++ trunk/reactos/boot/freeldr/freeldr/inifile/inifile.c Mon Nov 12 12:57:58 2007
@@ -26,9 +26,6 @@
DbgPrint((DPRINT_INIFILE, "IniOpenSection() SectionName = %s\n",
SectionName));
- if (!IniFileSectionInitialized)
- return FALSE;
-
// Loop through each section and find the one they want
Section = CONTAINING_RECORD(IniFileSectionListHead.Flink, INI_SECTION, ListEntry);
while (&Section->ListEntry != &IniFileSectionListHead)
Modified: trunk/reactos/boot/freeldr/freeldr/ui/noui.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/ui/no…
==============================================================================
--- trunk/reactos/boot/freeldr/freeldr/ui/noui.c (original)
+++ trunk/reactos/boot/freeldr/freeldr/ui/noui.c Mon Nov 12 12:57:58 2007
@@ -43,7 +43,6 @@
VOID NoUiDrawStatusText(PCSTR StatusText)
{
- printf(StatusText);
}
VOID NoUiUpdateDateTime(VOID)