From 9669287e85d11bb2f9bd684e932da7fdea8c2f5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A1n=20Tomko?= Date: Tue, 28 Jul 2020 21:59:45 +0200 Subject: [PATCH] tests: qemucapsxml2xmltest: split variable declaration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit One variable per line. Signed-off-by: Ján Tomko Reviewed-by: Laine Stump --- tests/qemucaps2xmltest.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/qemucaps2xmltest.c b/tests/qemucaps2xmltest.c index 7a5125fea6..f087b037ce 100644 --- a/tests/qemucaps2xmltest.c +++ b/tests/qemucaps2xmltest.c @@ -137,7 +137,8 @@ testQemuCapsXML(const void *opaque) { int ret = -1; const testQemuData *data = opaque; - char *capsFile = NULL, *xmlFile = NULL; + char *capsFile = NULL + char *xmlFile = NULL; char *capsData = NULL; char *capsXml = NULL; virCapsPtr capsProvided = NULL;