Remove pointless "const". Bloatcheck says 0 bytes difference.

This commit is contained in:
Rob Landley
2006-09-12 21:42:17 +00:00
parent 1b2b5cfba8
commit 20cc6d567f
6 changed files with 9 additions and 8 deletions

View File

@@ -48,8 +48,8 @@ int gunzip_main(int argc, char **argv)
do {
struct stat stat_buf;
const char *old_path = argv[optind];
const char *delete_path = NULL;
char *old_path = argv[optind];
char *delete_path = NULL;
char *new_path = NULL;
int src_fd;
int dst_fd;

View File

@@ -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;