projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
786635e
)
typo fix
author
Denys Vlasenko
<vda.linux@googlemail.com>
Sun, 17 Oct 2010 10:45:24 +0000
(12:45 +0200)
committer
Denys 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
patch
|
blob
|
history
diff --git
a/coreutils/tee.c
b/coreutils/tee.c
index 2e1e367f2ac1045aad025831b4e4dc31105d2710..e66e885ec918c34ddc0edb59fea374860bee4b70 100644
(file)
--- 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 sentin
a
l. */
+ /* Allocate an array of FILE *'s, with one extra for a sentin
e
l. */
fp = files = xzalloc(sizeof(FILE *) * (argc + 2));
np = names = argv - 1;