summaryrefslogtreecommitdiff
path: root/os/xprintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'os/xprintf.c')
-rw-r--r--os/xprintf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/os/xprintf.c b/os/xprintf.c
index 3fe19b36f..71a4424f7 100644
--- a/os/xprintf.c
+++ b/os/xprintf.c
@@ -84,7 +84,7 @@ XNFvprintf(const char *format, va_list va)
size = vsnprintf(NULL, 0, format, va2);
va_end(va2);
- ret = (char *)XNFalloc(size + 1);
+ ret = (char *)xnfalloc(size + 1);
if (ret == NULL)
return NULL;