From 20cc6d567f8cc21405ab05ca62a6955a5b1277b5 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Tue, 12 Sep 2006 21:42:17 +0000 Subject: Remove pointless "const". Bloatcheck says 0 bytes difference. --- archival/uncompress.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'archival/uncompress.c') 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) 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; -- cgit v1.2.3