aboutsummaryrefslogtreecommitdiffstats
path: root/src/text.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/text.h')
-rw-r--r--src/text.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/text.h b/src/text.h
index 0b318bb..eb6149d 100644
--- a/src/text.h
+++ b/src/text.h
@@ -255,7 +255,10 @@ txt_printf(char *msg, ...) {
255 va_list arg_list; 255 va_list arg_list;
256 va_start(arg_list, msg); 256 va_start(arg_list, msg);
257 char buf[512] = {0}; 257 char buf[512] = {0};
258 vsprintf(buf, msg, arg_list); 258 // TODO: This call pulls in malloc() and a bunch of other things.
259 // To reduce memory usage and filesize, it would be advisable
260 // to replace it with something simpler.
261 vsiprintf(buf, msg, arg_list);
259 txt_puts(buf); 262 txt_puts(buf);
260} 263}
261 264