This commit is contained in:
Devaev Maxim
2021-03-25 13:35:56 +03:00
parent 3b7cbc62c4
commit 749bc5caf7

View File

@@ -45,7 +45,7 @@
#define UNUSED __attribute__((unused)) #define UNUSED __attribute__((unused))
INLINE char *bool_to_string(bool flag) { INLINE const char *bool_to_string(bool flag) {
return (flag ? "true" : "false"); return (flag ? "true" : "false");
} }