From: Denys Vlasenko Date: Sun, 17 Oct 2010 10:45:24 +0000 (+0200) Subject: typo fix X-Git-Tag: 1_18_0~138 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=ea694163af05fd9cf71af52d5d8d64af81577b14;p=oweals%2Fbusybox.git typo fix Signed-off-by: Denys Vlasenko --- 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) * 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;