]> granicus.if.org Git - xz/commitdiff
xz: Use an array instead of pointer for stdin_filename.
authorLasse Collin <lasse.collin@tukaani.org>
Sun, 5 Sep 2010 18:11:33 +0000 (21:11 +0300)
committerLasse Collin <lasse.collin@tukaani.org>
Sun, 5 Sep 2010 18:11:33 +0000 (21:11 +0300)
Thanks Joerg Sonnenberger.

src/xz/args.c
src/xz/args.h

index d28a3d40ca149147830eea1d2aec3d5cb9fdd42b..4bd84a0c141c7e1165b0a485e0fa1774b6480301 100644 (file)
@@ -25,7 +25,7 @@ bool opt_robot = false;
 
 // We don't modify or free() this, but we need to assign it in some
 // non-const pointers.
-const char *const stdin_filename = "(stdin)";
+const char stdin_filename[] = "(stdin)";
 
 
 /// Parse and set the memory usage limit for compression and/or decompression.
index d01033c821473e3626f69a4b2e08b34e8371a5f3..b23f4ef12c92309e89336e2a985b0ec69ceb6c22 100644 (file)
@@ -37,6 +37,6 @@ extern bool opt_keep_original;
 // extern bool opt_recursive;
 extern bool opt_robot;
 
-extern const char *const stdin_filename;
+extern const char stdin_filename[];
 
 extern void args_parse(args_info *args, int argc, char **argv);