aboutsummaryrefslogtreecommitdiff
path: root/archival
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-01-28 22:45:43 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-01-28 22:45:43 +0000
commit847fa779aff2592e842654b95dc2c321885e1eec (patch)
tree82a3ba374faa6f07bdcfea80d12a6e9efe2870c4 /archival
parent0effc2410b219de8c1966752ed217d67943fce69 (diff)
downloadbusybox-w32-847fa779aff2592e842654b95dc2c321885e1eec.tar.gz
busybox-w32-847fa779aff2592e842654b95dc2c321885e1eec.tar.bz2
busybox-w32-847fa779aff2592e842654b95dc2c321885e1eec.zip
*: tidy up usage of char **environ
Diffstat (limited to 'archival')
-rw-r--r--archival/libunarchive/open_transformer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/archival/libunarchive/open_transformer.c b/archival/libunarchive/open_transformer.c
index 757a2a389..d6f5e6271 100644
--- a/archival/libunarchive/open_transformer.c
+++ b/archival/libunarchive/open_transformer.c
@@ -30,7 +30,7 @@ int open_transformer(int src_fd,
30 30
31 if (pid == 0) { 31 if (pid == 0) {
32 /* child process */ 32 /* child process */
33 close(fd_pipe[0]); /* We don't wan't to read from the parent */ 33 close(fd_pipe[0]); /* We don't want to read from the parent */
34 // FIXME: error check? 34 // FIXME: error check?
35#if BB_MMU 35#if BB_MMU
36 transformer(src_fd, fd_pipe[1]); 36 transformer(src_fd, fd_pipe[1]);