aboutsummaryrefslogtreecommitdiffstats
path: root/version.pl
diff options
context:
space:
mode:
authorGravatar Steven Schubiger <stsc@refcnt.org> 2018-06-10 14:57:44 +0200
committerGravatar Steven Schubiger <stsc@refcnt.org> 2018-06-10 14:57:44 +0200
commitd8ac99f59c3d8e499362eeb7d5a8b48f8fb67a17 (patch)
tree86bbbcfbc03366f8655eeadd54ab5b7201366f9e /version.pl
parent997dfe07ff91a013f37c744554aaa8b9d8b5539c (diff)
downloadcolorize-d8ac99f59c3d8e499362eeb7d5a8b48f8fb67a17.tar.gz
colorize-d8ac99f59c3d8e499362eeb7d5a8b48f8fb67a17.tar.bz2
print_version(): const version string pointer
Diffstat (limited to 'version.pl')
-rwxr-xr-xversion.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/version.pl b/version.pl
index 850902e..3b1d403 100755
--- a/version.pl
+++ b/version.pl
@@ -14,11 +14,11 @@ and system('git ls-files colorize.c --error-unmatch >/dev/null 2>&1') == 0) {
if (length $version) {
print <<"EOT";
-const char *version = "$version";
+const char *const version = "$version";
EOT
}
else {
print <<'EOT';
-const char *version = NULL;
+const char *const version = NULL;
EOT
}