summaryrefslogtreecommitdiffstats
path: root/lib/xfuncs.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/xfuncs.c')
-rw-r--r--lib/xfuncs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/xfuncs.c b/lib/xfuncs.c
index 152081c662..aaf0788544 100644
--- a/lib/xfuncs.c
+++ b/lib/xfuncs.c
@@ -109,7 +109,7 @@ char *xvasprintf(const char *fmt, va_list ap)
{
char *p;
- p = vasprintf(fmt, ap);
+ p = bvasprintf(fmt, ap);
if (!p)
panic("ERROR: out of memory\n");
return p;