aboutsummaryrefslogtreecommitdiff
path: root/archival/gunzip.c
diff options
context:
space:
mode:
Diffstat (limited to 'archival/gunzip.c')
-rw-r--r--archival/gunzip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/archival/gunzip.c b/archival/gunzip.c
index 430bc630e..388672541 100644
--- a/archival/gunzip.c
+++ b/archival/gunzip.c
@@ -114,7 +114,7 @@ extern int gunzip_main(int argc, char **argv)
114 if (argv[optind] == NULL || strcmp(argv[optind], "-") == 0) { 114 if (argv[optind] == NULL || strcmp(argv[optind], "-") == 0) {
115 flags |= gunzip_to_stdout; 115 flags |= gunzip_to_stdout;
116 } else { 116 } else {
117 if_name = strdup(argv[optind]); 117 if_name = xstrdup(argv[optind]);
118 /* Open input file */ 118 /* Open input file */
119 in_file = xfopen(if_name, "r"); 119 in_file = xfopen(if_name, "r");
120 120