diff options
author | Denys Vlasenko | 2010-10-17 12:45:24 +0200 |
---|---|---|
committer | Denys Vlasenko | 2010-10-17 12:45:24 +0200 |
commit | ea694163af05fd9cf71af52d5d8d64af81577b14 (patch) | |
tree | 1bcb24fee3689562cf5409164c3f5d9104c8cf86 /coreutils | |
parent | 786635e62e4c8a8646d01ede1c7bb98ce604c7fa (diff) | |
download | busybox-ea694163af05fd9cf71af52d5d8d64af81577b14.zip busybox-ea694163af05fd9cf71af52d5d8d64af81577b14.tar.gz |
typo fix
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/tee.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/tee.c b/coreutils/tee.c index 2e1e367..e66e885 100644 --- a/coreutils/tee.c +++ b/coreutils/tee.c @@ -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; |