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

View File

@@ -4,6 +4,7 @@
#include <string.h>
#include <unistd.h>
#include <errno.h>
#include "util.h"
static void
@@ -23,8 +24,8 @@ main(int argc, char *argv[])
if (argc < 1)
usage();
for(; argc > 0; argc--, argv++)
if(rmdir(argv[0]) == -1)
for (; argc > 0; argc--, argv++)
if (rmdir(argv[0]) == -1)
fprintf(stderr, "rmdir: '%s': %s\n",
argv[0], strerror(errno));