garray: make parameter of ga_concat_strings const

This commit is contained in:
Nicolas Hillegeer
2014-04-26 22:44:19 +02:00
committed by Thiago de Arruda
parent b737b27e6a
commit 767f0fae0b
2 changed files with 2 additions and 2 deletions

View File

@@ -136,7 +136,7 @@ char_u *ga_concat_strings_sep(const garray_T *gap, const char *sep)
/// @param gap
///
/// @returns the concatenated strings
char_u* ga_concat_strings(garray_T *gap)
char_u* ga_concat_strings(const garray_T *gap)
{
return ga_concat_strings_sep(gap, ",");
}