xz: Make args_info.files_name a const pointer.

This commit is contained in:
Lasse Collin 2022-12-08 19:24:22 +02:00
parent bc665b84ea
commit 01b3549e52
2 changed files with 2 additions and 2 deletions

View File

@ -520,7 +520,7 @@ parse_real(args_info *args, int argc, char **argv)
"or `--files0'."));
if (optarg == NULL) {
args->files_name = (char *)stdin_filename;
args->files_name = stdin_filename;
args->files_file = stdin;
} else {
args->files_name = optarg;

View File

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