[SETUPAPI]
[reactos.git] / reactos / dll / win32 / setupapi / parser.c
index 6d5b23c..fbb459f 100644 (file)
@@ -2383,10 +2383,12 @@ BOOL EnumerateSectionsStartingWith(
     unsigned int i;
 
     for (i = 0; i < file->nb_sections; i++)
+    {
         if (strncmpiW(pStr, file->sections[i]->name, len) == 0)
         {
             if (!Callback(file->sections[i]->name, Context))
                 return FALSE;
         }
+    }
     return TRUE;
 }