diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2002-11-03 12:50:33 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2002-11-03 12:50:33 +0000 |
commit | 2fc54a9258c3aa5dad2ce9807ba85cf29af2668e (patch) | |
tree | 3737d24d12ef7e7fb4b7decbdd2b3d0938509ed8 | |
parent | 6ab32eb34ca6e0023bc7ab7f6ece9321116e091f (diff) | |
download | busybox-w32-2fc54a9258c3aa5dad2ce9807ba85cf29af2668e.tar.gz busybox-w32-2fc54a9258c3aa5dad2ce9807ba85cf29af2668e.tar.bz2 busybox-w32-2fc54a9258c3aa5dad2ce9807ba85cf29af2668e.zip |
Fix #define syntax
-rw-r--r-- | archival/libunarchive/decompress_uncompress.c | 2 | ||||
-rw-r--r-- | archival/libunarchive/uncompress.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/archival/libunarchive/decompress_uncompress.c b/archival/libunarchive/decompress_uncompress.c index 302201fc0..fe0f2b331 100644 --- a/archival/libunarchive/decompress_uncompress.c +++ b/archival/libunarchive/decompress_uncompress.c | |||
@@ -1,7 +1,7 @@ | |||
1 | #include "config.h" | 1 | #include "config.h" |
2 | #include "libbb.h" | 2 | #include "libbb.h" |
3 | 3 | ||
4 | #ifdef CONFIG_UNCOMPRESS || defined CONFIG_FEATURE_GUNZIP_UNCOMPRESS | 4 | #if defined CONFIG_UNCOMPRESS || defined CONFIG_FEATURE_GUNZIP_UNCOMPRESS |
5 | 5 | ||
6 | /* uncompress for busybox -- (c) 2002 Robert Griebl | 6 | /* uncompress for busybox -- (c) 2002 Robert Griebl |
7 | * | 7 | * |
diff --git a/archival/libunarchive/uncompress.c b/archival/libunarchive/uncompress.c index 302201fc0..fe0f2b331 100644 --- a/archival/libunarchive/uncompress.c +++ b/archival/libunarchive/uncompress.c | |||
@@ -1,7 +1,7 @@ | |||
1 | #include "config.h" | 1 | #include "config.h" |
2 | #include "libbb.h" | 2 | #include "libbb.h" |
3 | 3 | ||
4 | #ifdef CONFIG_UNCOMPRESS || defined CONFIG_FEATURE_GUNZIP_UNCOMPRESS | 4 | #if defined CONFIG_UNCOMPRESS || defined CONFIG_FEATURE_GUNZIP_UNCOMPRESS |
5 | 5 | ||
6 | /* uncompress for busybox -- (c) 2002 Robert Griebl | 6 | /* uncompress for busybox -- (c) 2002 Robert Griebl |
7 | * | 7 | * |