diff options
author | pommicket <pommicket@gmail.com> | 2023-01-01 23:38:51 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2023-01-01 23:38:51 -0500 |
commit | 8c16344d5279eef6ed6ad18d4de7e8a2a5bf2f98 (patch) | |
tree | e56a9102b9317b51ace48ce0cba37d5397d6105b /base.h | |
parent | 94b241351c7418c2f6a32cc01b889bc48478c50d (diff) |
char const => const char
Diffstat (limited to 'base.h')
-rw-r--r-- | base.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |