Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2010-10-17 12:45:24 +02:00
parent 786635e62e
commit ea694163af
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ int tee_main(int argc, char **argv)
* that doesn't consume all its input. Good idea... */
signal(SIGPIPE, SIG_IGN);
/* Allocate an array of FILE *'s, with one extra for a sentinal. */
/* Allocate an array of FILE *'s, with one extra for a sentinel. */
fp = files = xzalloc(sizeof(FILE *) * (argc + 2));
np = names = argv - 1;