aboutsummaryrefslogtreecommitdiffstats
path: root/src/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util.c')
-rw-r--r--src/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.c b/src/util.c
index 266cf90..d99e952 100644
--- a/src/util.c
+++ b/src/util.c
@@ -59,7 +59,7 @@ char *xstrdup(const char *str) {
}
/* For concating multiple strings into a single larger one. */
-char *concat(size_t count, ...) {
+char *concat_(size_t count, ...) {
assert(count > 0);
va_list ap, ap2;
va_start(ap, count);