[utils] char_array_add_vjoined to stay consistent (add_* methods NUL termiante)

This commit is contained in:
Al
2017-01-09 14:42:36 -05:00
parent a2b84a0177
commit 953a26e54e
3 changed files with 5 additions and 5 deletions

View File

@@ -12,7 +12,7 @@ void feature_array_add(cstring_array *features, size_t count, ...) {
cstring_array_start_token(features);
bool strip_separator = true;
char_array_append_vjoined(features->str, FEATURE_SEPARATOR_CHAR, strip_separator, count, args);
char_array_add_vjoined(features->str, FEATURE_SEPARATOR_CHAR, strip_separator, count, args);
va_end(args);
}