summaryrefslogtreecommitdiffstats
path: root/lib/stringlist.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/stringlist.c')
-rw-r--r--lib/stringlist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stringlist.c b/lib/stringlist.c
index 8a18366a96..8e92c1b207 100644
--- a/lib/stringlist.c
+++ b/lib/stringlist.c
@@ -34,7 +34,7 @@ int string_list_add_asprintf(struct string_list *sl, const char *fmt, ...)
va_start(args, fmt);
- new->str = vasprintf(fmt, args);
+ new->str = bvasprintf(fmt, args);
va_end(args);