Small fix in head.c
Only deal with this newline-handling when many is true.
This commit is contained in:
parent
ab26b5583e
commit
edba90934d
7
head.c
7
head.c
@ -55,10 +55,11 @@ main(int argc, char *argv[])
|
||||
ret = 1;
|
||||
continue;
|
||||
}
|
||||
if (newline)
|
||||
putchar('\n');
|
||||
if (many)
|
||||
if (many) {
|
||||
if (newline)
|
||||
putchar('\n');
|
||||
printf("==> %s <==\n", *argv);
|
||||
}
|
||||
newline = 1;
|
||||
head(fp, *argv, n);
|
||||
fclose(fp);
|
||||
|
Loading…
x
Reference in New Issue
Block a user