code style

Signed-off-by: Hiltjo Posthuma <hiltjo@codemadness.org>
This commit is contained in:
Hiltjo Posthuma
2014-06-01 14:59:47 +02:00
committed by sin
parent 97ca7c8b6d
commit 953ebf3573
35 changed files with 58 additions and 94 deletions

3
tee.c
View File

@@ -18,7 +18,7 @@ main(int argc, char *argv[])
char buf[BUFSIZ];
int i, nfps = 1;
size_t n;
FILE **fps;
FILE **fps = NULL;
ARGBEGIN {
case 'a':
@@ -50,4 +50,3 @@ main(int argc, char *argv[])
return EXIT_SUCCESS;
}