]> git.scottworley.com Git - tl-append/commitdiff
appease clang-tidy: More const
authorScott Worley <scottworley@scottworley.com>
Wed, 13 Sep 2023 18:41:53 +0000 (11:41 -0700)
committerScott Worley <scottworley@scottworley.com>
Wed, 13 Sep 2023 18:41:53 +0000 (11:41 -0700)
common.c
common.h

index 1bc1102c001aa023d4eea1e9ebc0dda0ff516d05..747111beda28fd79d89060ba7aa6959e5bc6f423 100644 (file)
--- a/common.c
+++ b/common.c
@@ -4,7 +4,7 @@
 #include <stdio.h>
 #include <stdlib.h>
 
-const char *FILENAME = "tl.log";
+const char *const FILENAME = "tl.log";
 
 void die(const char *message) {
   fputs(message, stderr);
index 8d40a7811bcff1632a42af149bddf34504ee9673..93d722f8f67fb2cb04b65c1b574a729ddb0f8a0b 100644 (file)
--- a/common.h
+++ b/common.h
@@ -1,6 +1,6 @@
 #include <time.h>
 
-extern const char *FILENAME;
+extern const char *const FILENAME;
 
 void die(const char *message);