diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-09-09 11:20:55 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-09-09 11:20:55 +0000 |
commit | bf8fcaceb7a9eb23db94ecb20f24291c4a959eca (patch) | |
tree | 4af9ac25d24f0837f2d63b7057b0071247c1e32c | |
parent | 4d7605af86644861faf0f3a95b7bf36865bf2a90 (diff) | |
download | busybox-w32-bf8fcaceb7a9eb23db94ecb20f24291c4a959eca.tar.gz busybox-w32-bf8fcaceb7a9eb23db94ecb20f24291c4a959eca.tar.bz2 busybox-w32-bf8fcaceb7a9eb23db94ecb20f24291c4a959eca.zip |
open_transformer: fix vda's goofup
-rw-r--r-- | archival/libunarchive/open_transformer.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/archival/libunarchive/open_transformer.c b/archival/libunarchive/open_transformer.c index f8f587e8d..355613a67 100644 --- a/archival/libunarchive/open_transformer.c +++ b/archival/libunarchive/open_transformer.c | |||
@@ -46,8 +46,9 @@ int open_transformer(int src_fd, | |||
46 | xmove_fd(src_fd, 0); | 46 | xmove_fd(src_fd, 0); |
47 | xmove_fd(fd_pipe[1], 1); | 47 | xmove_fd(fd_pipe[1], 1); |
48 | va_start(ap, transform_prog); | 48 | va_start(ap, transform_prog); |
49 | BB_EXECVP(transform_prog, ap); | 49 | /* hoping that va_list -> char** on our CPU is working... */ |
50 | bb_perror_and_die("exec failed"); | 50 | BB_EXECVP(transform_prog, (void*)ap); |
51 | bb_perror_msg_and_die("exec failed"); | ||
51 | #endif | 52 | #endif |
52 | /* notreached */ | 53 | /* notreached */ |
53 | } | 54 | } |