summaryrefslogtreecommitdiffstats
path: root/src/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util.c')
-rw-r--r--src/util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util.c b/src/util.c
index 1058b8d..4a3ea47 100644
--- a/src/util.c
+++ b/src/util.c
@@ -67,8 +67,8 @@ vstrjoin(const uchar* first, va_list args_list)
// FIXME: this is horribly, awfully, disgracefully slow.
// so I'm lazy.
- uchar* arg = NULL;
- uchar* result = ustrdup(first);
+ const uchar* arg = NULL;
+ uchar* result = ustrdup(first);
while ((arg = va_arg(args_list, const uchar*)) != NULL)
ustrappend(&result, arg);