diff options
author | Denis Vlasenko | 2008-01-28 22:45:43 +0000 |
---|---|---|
committer | Denis Vlasenko | 2008-01-28 22:45:43 +0000 |
commit | 847fa779aff2592e842654b95dc2c321885e1eec (patch) | |
tree | 82a3ba374faa6f07bdcfea80d12a6e9efe2870c4 /archival | |
parent | 0effc2410b219de8c1966752ed217d67943fce69 (diff) | |
download | busybox-847fa779aff2592e842654b95dc2c321885e1eec.zip busybox-847fa779aff2592e842654b95dc2c321885e1eec.tar.gz |
*: tidy up usage of char **environ
Diffstat (limited to 'archival')
-rw-r--r-- | archival/libunarchive/open_transformer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archival/libunarchive/open_transformer.c b/archival/libunarchive/open_transformer.c index 757a2a3..d6f5e62 100644 --- a/archival/libunarchive/open_transformer.c +++ b/archival/libunarchive/open_transformer.c @@ -30,7 +30,7 @@ int open_transformer(int src_fd, if (pid == 0) { /* child process */ - close(fd_pipe[0]); /* We don't wan't to read from the parent */ + close(fd_pipe[0]); /* We don't want to read from the parent */ // FIXME: error check? #if BB_MMU transformer(src_fd, fd_pipe[1]); |