On 06/08/2018 08:53, Markus Armbruster wrote: > 13 of 13 C99 library function pairs taking ... or a va_list parameter > are called FOO() and vFOO(). In QEMU, we sometimes call the one > taking a va_list FOOv() instead. Bad taste. libqtest.h uses both > spellings. Normalize it to the standard spelling.
Probably the bad example here was g_strdupv and g_strjoinv. Those however are taking a NULL-terminated char** [1] so the example was copied incorrectly. Paolo [1] In this case, it's NULL not NUL. :)