Fix coding style

It was about damn time. Consistency is very important in such a
big codebase.
This commit is contained in:
FRIGN
2014-11-13 18:29:30 +01:00
committed by sin
parent e35d9e62a5
commit eee98ed3a4
70 changed files with 622 additions and 557 deletions

3
rm.c
View File

@@ -4,6 +4,7 @@
#include <stdlib.h>
#include <unistd.h>
#include <sys/stat.h>
#include "fs.h"
#include "util.h"
@@ -35,7 +36,7 @@ main(int argc, char *argv[])
return 0;
}
for(; argc > 0; argc--, argv++)
for (; argc > 0; argc--, argv++)
rm(argv[0]);
return 0;