diff options
author | "Vladimir N. Oleynik" | 2005-10-12 15:34:25 +0000 |
---|---|---|
committer | "Vladimir N. Oleynik" | 2005-10-12 15:34:25 +0000 |
commit | 6c35c7c97628cb81eb26c2a059b0dde2879d91aa (patch) | |
tree | 0da08a6d852fcb5d68bbe3a368460ed815b74923 /archival/gunzip.c | |
parent | 86a1073e0bfa608defbfaa43d94a537c5e700efe (diff) | |
download | busybox-6c35c7c97628cb81eb26c2a059b0dde2879d91aa.zip busybox-6c35c7c97628cb81eb26c2a059b0dde2879d91aa.tar.gz |
usage bb_dev_null
Diffstat (limited to 'archival/gunzip.c')
-rw-r--r-- | archival/gunzip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archival/gunzip.c b/archival/gunzip.c index a4db7ca..76738b0 100644 --- a/archival/gunzip.c +++ b/archival/gunzip.c @@ -116,7 +116,7 @@ extern int gunzip_main(int argc, char **argv) /* Set output filename and number */ if (opt & GUNZIP_OPT_TEST) { - dst_fd = bb_xopen("/dev/null", O_WRONLY); /* why does test use filenum 2 ? */ + dst_fd = bb_xopen(bb_dev_null, O_WRONLY); /* why does test use filenum 2 ? */ } else if (opt & GUNZIP_OPT_STDOUT) { dst_fd = STDOUT_FILENO; } else { |