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

5
date.c
View File

@@ -3,6 +3,7 @@
#include <stdlib.h>
#include <time.h>
#include <unistd.h>
#include "util.h"
static void
@@ -33,9 +34,9 @@ main(int argc, char *argv[])
default:
usage();
} ARGEND;
if(argc > 0 && argv[0][0] == '+')
if (argc > 0 && argv[0][0] == '+')
fmt = &argv[0][1];
if(!(now = tztime(&t)))
if (!(now = tztime(&t)))
eprintf("%stime failed\n", tz);
strftime(buf, sizeof buf, fmt, now);