diff options
author | Rob Landley <rob@landley.net> | 2006-09-12 21:42:17 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-09-12 21:42:17 +0000 |
commit | 20cc6d567f8cc21405ab05ca62a6955a5b1277b5 (patch) | |
tree | d8f7b3cd70149f3e0e291cc10a14c06917d34cb5 /archival | |
parent | 1b2b5cfba81aab3e56d374ee3dcee97cde4bcb4e (diff) | |
download | busybox-w32-20cc6d567f8cc21405ab05ca62a6955a5b1277b5.tar.gz busybox-w32-20cc6d567f8cc21405ab05ca62a6955a5b1277b5.tar.bz2 busybox-w32-20cc6d567f8cc21405ab05ca62a6955a5b1277b5.zip |
Remove pointless "const". Bloatcheck says 0 bytes difference.
Diffstat (limited to 'archival')
-rw-r--r-- | archival/gunzip.c | 4 | ||||
-rw-r--r-- | archival/uncompress.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/archival/gunzip.c b/archival/gunzip.c index 7be94e1b8..a7f5ce481 100644 --- a/archival/gunzip.c +++ b/archival/gunzip.c | |||
@@ -48,8 +48,8 @@ int gunzip_main(int argc, char **argv) | |||
48 | 48 | ||
49 | do { | 49 | do { |
50 | struct stat stat_buf; | 50 | struct stat stat_buf; |
51 | const char *old_path = argv[optind]; | 51 | char *old_path = argv[optind]; |
52 | const char *delete_path = NULL; | 52 | char *delete_path = NULL; |
53 | char *new_path = NULL; | 53 | char *new_path = NULL; |
54 | int src_fd; | 54 | int src_fd; |
55 | int dst_fd; | 55 | int dst_fd; |
diff --git a/archival/uncompress.c b/archival/uncompress.c index 8c466ebdf..cbcbcefed 100644 --- a/archival/uncompress.c +++ b/archival/uncompress.c | |||
@@ -19,8 +19,8 @@ int uncompress_main(int argc, char **argv) | |||
19 | flags = bb_getopt_ulflags(argc, argv, "cf"); | 19 | flags = bb_getopt_ulflags(argc, argv, "cf"); |
20 | 20 | ||
21 | while (optind < argc) { | 21 | while (optind < argc) { |
22 | const char *compressed_file = argv[optind++]; | 22 | char *compressed_file = argv[optind++]; |
23 | const char *delete_path = NULL; | 23 | char *delete_path = NULL; |
24 | char *uncompressed_file = NULL; | 24 | char *uncompressed_file = NULL; |
25 | int src_fd; | 25 | int src_fd; |
26 | int dst_fd; | 26 | int dst_fd; |