In commit
ad80bba90a3 I mistakenly didn't delete '**' from the
variable declaration when converting it to 'GStrv' and deleted the
'separator' variable since it was declared on the same line as a
different variable.
Fixes: ad80bba90a3
Signed-off-by: Peter Krempa <pkrempa@redhat.com>
virDomainVideoDefPtr video = NULL;
virDomainGraphicsDefPtr graphics = NULL;
- g_auto(GStrv) **params = NULL;
+ g_auto(GStrv) params = NULL;
GStrv next;
if (!(video = virDomainVideoDefNew(xmlopt)))
for (next = params; *next; next++) {
char *param = *next;
+ char *separator;
if (!video->driver)
video->driver = g_new0(virDomainVideoDriverDef, 1);