]> git.marmaro.de Git - mmh/commitdiff
Slightly reformat the FINDCOMP macro to quell a clang warning about
authorLyndon Nerenberg <lyndon@orthanc.ca>
Tue, 16 Oct 2012 00:08:29 +0000 (17:08 -0700)
committerLyndon Nerenberg <lyndon@orthanc.ca>
Tue, 16 Oct 2012 00:08:29 +0000 (17:08 -0700)
an empty for()-loop body.

h/fmt_scan.h

index ed4e2f0d68fe4d821a057fda3e5dcefe103fda48..d8fab615e181a617c396957d6879baeddc66d72a 100644 (file)
@@ -62,7 +62,8 @@ extern struct comp *wantcomp[128];
 #define FINDCOMP(comp,name) \
                for (comp = wantcomp[CHASH(name)]; \
                     comp && strcmp(comp->c_name,name); \
-                    comp = comp->c_next) ;
+                    comp = comp->c_next) \
+               ;
 
 /*
  * This structure defines one formatting instruction.