diff --git a/reactos/boot/freeldr/freeldr/inifile/inifile.c b/reactos/boot/freeldr/freeldr/inifile/inifile.c index 63b412b78e7..3180083f785 100644 --- a/reactos/boot/freeldr/freeldr/inifile/inifile.c +++ b/reactos/boot/freeldr/freeldr/inifile/inifile.c @@ -34,8 +34,8 @@ BOOLEAN IniOpenSection(PCSTR SectionName, ULONG* SectionId) if (_stricmp(SectionName, Section->SectionName) == 0) { // We found it - if (SectionId) - *SectionId = (ULONG)Section; + if (SectionId) + *SectionId = (ULONG)Section; DbgPrint((DPRINT_INIFILE, "IniOpenSection() Found it! SectionId = 0x%x\n", SectionId)); return TRUE; }