aboutsummaryrefslogtreecommitdiff
path: root/sokol_log.h
diff options
context:
space:
mode:
authorAndre Weissflog <floooh@gmail.com>2025-01-30 18:36:02 +0100
committerAndre Weissflog <floooh@gmail.com>2025-01-30 18:36:02 +0100
commitadf2c22d94c3bc8f2593b0fc3b63e29ed360510f (patch)
tree43b06484139a7c064808346023acea36098a4a86 /sokol_log.h
parent7476b7fcc7df55fbac1c37a49fa37b4a87a62cbc (diff)
add -Wextra-semi to CI tests and fix resulting warnings
Diffstat (limited to 'sokol_log.h')
-rw-r--r--sokol_log.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sokol_log.h b/sokol_log.h
index 0e1bdb64..10a70c65 100644
--- a/sokol_log.h
+++ b/sokol_log.h
@@ -245,7 +245,7 @@ EM_JS(void, slog_js_log, (uint32_t level, const char* c_str), {
case 2: console.warn(str); break;
default: console.info(str); break;
}
-});
+})
#endif
SOKOL_API_IMPL void slog_func(const char* tag, uint32_t log_level, uint32_t log_item, const char* message, uint32_t line_nr, const char* filename, void* user_data) {