aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-10-17 12:45:24 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2010-10-17 12:45:24 +0200
commitea694163af05fd9cf71af52d5d8d64af81577b14 (patch)
tree1bcb24fee3689562cf5409164c3f5d9104c8cf86
parent786635e62e4c8a8646d01ede1c7bb98ce604c7fa (diff)
downloadbusybox-w32-ea694163af05fd9cf71af52d5d8d64af81577b14.tar.gz
busybox-w32-ea694163af05fd9cf71af52d5d8d64af81577b14.tar.bz2
busybox-w32-ea694163af05fd9cf71af52d5d8d64af81577b14.zip
typo fix
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--coreutils/tee.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/tee.c b/coreutils/tee.c
index 2e1e367f2..e66e885ec 100644
--- a/coreutils/tee.c
+++ b/coreutils/tee.c
@@ -42,7 +42,7 @@ int tee_main(int argc, char **argv)
42 * that doesn't consume all its input. Good idea... */ 42 * that doesn't consume all its input. Good idea... */
43 signal(SIGPIPE, SIG_IGN); 43 signal(SIGPIPE, SIG_IGN);
44 44
45 /* Allocate an array of FILE *'s, with one extra for a sentinal. */ 45 /* Allocate an array of FILE *'s, with one extra for a sentinel. */
46 fp = files = xzalloc(sizeof(FILE *) * (argc + 2)); 46 fp = files = xzalloc(sizeof(FILE *) * (argc + 2));
47 np = names = argv - 1; 47 np = names = argv - 1;
48 48