put spaces after if/while

This commit is contained in:
Yukihiro "Matz" Matsumoto
2013-04-20 23:11:43 +09:00
parent 2acf724554
commit c79172dfd5
10 changed files with 47 additions and 47 deletions
+1 -1
View File
@@ -52,7 +52,7 @@ usage(const char *name)
const char *const *p = usage_msg;
printf("Usage: %s [switches] programfile\n", name);
while(*p)
while (*p)
printf(" %s\n", *p++);
}