summaryrefslogtreecommitdiff
path: root/base.h
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2023-01-01 23:38:51 -0500
committerpommicket <pommicket@gmail.com>2023-01-01 23:38:51 -0500
commit8c16344d5279eef6ed6ad18d4de7e8a2a5bf2f98 (patch)
treee56a9102b9317b51ace48ce0cba37d5397d6105b /base.h
parent94b241351c7418c2f6a32cc01b889bc48478c50d (diff)
char const => const char
Diffstat (limited to 'base.h')
-rw-r--r--base.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/base.h b/base.h
index 1ef6333..92ea4ae 100644
--- a/base.h
+++ b/base.h
@@ -150,7 +150,7 @@ typedef unsigned long long ullong;
#endif
#if _WIN32
-static void print(char const *fmt, ...) {
+static void print(const char *fmt, ...) {
char buf[2048];
buf[2047] = '\0';
va_list args;