aboutsummaryrefslogtreecommitdiff
path: root/src/utils/dbg_log.h
diff options
context:
space:
mode:
authorSebastiano Tronto <sebastiano@tronto.net>2025-04-14 11:25:27 +0200
committerSebastiano Tronto <sebastiano@tronto.net>2025-04-14 11:25:27 +0200
commitbf1a9f1211726e2fd42f5aa5424034470ac87751 (patch)
tree51d3cd319b80fb054a8769e5f88216d3a2103a59 /src/utils/dbg_log.h
parentf7d6bec5a3b79425dab88043a10efad80e26fcb4 (diff)
downloadnissy-core-bf1a9f1211726e2fd42f5aa5424034470ac87751.tar.gz
nissy-core-bf1a9f1211726e2fd42f5aa5424034470ac87751.zip
Fix
Diffstat (limited to 'src/utils/dbg_log.h')
-rw-r--r--src/utils/dbg_log.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/dbg_log.h b/src/utils/dbg_log.h
index c30993a..2467983 100644
--- a/src/utils/dbg_log.h
+++ b/src/utils/dbg_log.h
@@ -11,7 +11,7 @@ write_wrapper(void (*write)(const char *), const char *str, ...)
11 va_list args; 11 va_list args;
12 12
13 va_start(args, str); 13 va_start(args, str);
14 sprintf(message, str, args); 14 vsprintf(message, str, args);
15 va_end(args); 15 va_end(args);
16 16
17 write(message); 17 write(message);

Generated with cgit - Back to sebastiano.tronto.net