diff options
author | Rob Landley | 2006-09-12 21:42:17 +0000 |
---|---|---|
committer | Rob Landley | 2006-09-12 21:42:17 +0000 |
commit | 20cc6d567f8cc21405ab05ca62a6955a5b1277b5 (patch) | |
tree | d8f7b3cd70149f3e0e291cc10a14c06917d34cb5 /archival/uncompress.c | |
parent | 1b2b5cfba81aab3e56d374ee3dcee97cde4bcb4e (diff) | |
download | busybox-20cc6d567f8cc21405ab05ca62a6955a5b1277b5.zip busybox-20cc6d567f8cc21405ab05ca62a6955a5b1277b5.tar.gz |
Remove pointless "const". Bloatcheck says 0 bytes difference.
Diffstat (limited to 'archival/uncompress.c')
-rw-r--r-- | archival/uncompress.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archival/uncompress.c b/archival/uncompress.c index 8c466eb..cbcbcef 100644 --- a/archival/uncompress.c +++ b/archival/uncompress.c @@ -19,8 +19,8 @@ int uncompress_main(int argc, char **argv) flags = bb_getopt_ulflags(argc, argv, "cf"); while (optind < argc) { - const char *compressed_file = argv[optind++]; - const char *delete_path = NULL; + char *compressed_file = argv[optind++]; + char *delete_path = NULL; char *uncompressed_file = NULL; int src_fd; int dst_fd; |