typo fix
authorDenys Vlasenko <vda.linux@googlemail.com>
Sun, 17 Oct 2010 10:45:24 +0000 (12:45 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Sun, 17 Oct 2010 10:45:24 +0000 (12:45 +0200)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
coreutils/tee.c

index 2e1e367..e66e885 100644 (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;