diff options
Diffstat (limited to 'libbb/read.c')
-rw-r--r-- | libbb/read.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbb/read.c b/libbb/read.c index 37503e84d..a0c0cc64a 100644 --- a/libbb/read.c +++ b/libbb/read.c | |||
@@ -315,7 +315,7 @@ int FAST_FUNC open_zipped(const char *fname) | |||
315 | char *sfx; | 315 | char *sfx; |
316 | int fd; | 316 | int fd; |
317 | #if BB_MMU | 317 | #if BB_MMU |
318 | USE_DESKTOP(long long) int FAST_FUNC (*xformer)(int src_fd, int dst_fd); | 318 | IF_DESKTOP(long long) int FAST_FUNC (*xformer)(int src_fd, int dst_fd); |
319 | enum { xformer_prog = 0 }; | 319 | enum { xformer_prog = 0 }; |
320 | #else | 320 | #else |
321 | enum { xformer = 0 }; | 321 | enum { xformer = 0 }; |
@@ -352,7 +352,7 @@ int FAST_FUNC open_zipped(const char *fname) | |||
352 | || magic[0] != 'B' || magic[1] != 'Z' | 352 | || magic[0] != 'B' || magic[1] != 'Z' |
353 | ) { | 353 | ) { |
354 | bb_error_msg_and_die("no gzip" | 354 | bb_error_msg_and_die("no gzip" |
355 | USE_FEATURE_SEAMLESS_BZ2("/bzip2") | 355 | IF_FEATURE_SEAMLESS_BZ2("/bzip2") |
356 | " magic"); | 356 | " magic"); |
357 | } | 357 | } |
358 | #if BB_MMU | 358 | #if BB_MMU |