Rename row_buffer_addv() to fix convention

This commit is contained in:
Přemysl Eric Janouch 2017-01-23 22:32:46 +01:00
parent c43e9f348f
commit 3af8b547e2
Signed by: p
GPG Key ID: B715679E3A361BE6
1 changed files with 2 additions and 2 deletions

4
tui.c
View File

@ -137,11 +137,11 @@ row_buffer_append (struct row_buffer *self, const char *str, chtype attrs)
}
static void
row_buffer_addv (struct row_buffer *self, const char *s, ...)
row_buffer_append_args (struct row_buffer *self, const char *s, ...)
ATTRIBUTE_SENTINEL;
static void
row_buffer_addv (struct row_buffer *self, const char *s, ...)
row_buffer_append_args (struct row_buffer *self, const char *s, ...)
{
va_list ap;
va_start (ap, s);