aboutsummaryrefslogtreecommitdiff
path: root/src/xz/args.h
diff options
context:
space:
mode:
authorLasse Collin <lasse.collin@tukaani.org>2022-12-08 19:24:22 +0200
committerLasse Collin <lasse.collin@tukaani.org>2022-12-08 19:24:22 +0200
commit01b3549e523edac899ec4925b282ceddd20da116 (patch)
treee68c33cbba960ff1fbd1a188e90add06836151e2 /src/xz/args.h
parentxz: Don't modify argv[]. (diff)
downloadxz-01b3549e523edac899ec4925b282ceddd20da116.tar.xz
xz: Make args_info.files_name a const pointer.
Diffstat (limited to '')
-rw-r--r--src/xz/args.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xz/args.h b/src/xz/args.h
index 46a8e8ed..a1a5930a 100644
--- a/src/xz/args.h
+++ b/src/xz/args.h
@@ -19,7 +19,7 @@ typedef struct {
/// Name of the file from which to read filenames. This is NULL
/// if --files or --files0 was not used.
- char *files_name;
+ const char *files_name;
/// File opened for reading from which filenames are read. This is
/// non-NULL only if files_name is non-NULL.