From 21498975d1266bf007a4bf509e85866185b2eac5 Mon Sep 17 00:00:00 2001 From: Peter Krempa Date: Fri, 16 Mar 2018 17:11:29 +0100 Subject: [PATCH] tests: qemublock: Rename variables in anticipation of new tests New tests will add new data structures so rename the 'data' structure. Signed-off-by: Peter Krempa Reviewed-by: John Ferlan --- tests/qemublocktest.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tests/qemublocktest.c b/tests/qemublocktest.c index bd628295ff..7eef9f286a 100644 --- a/tests/qemublocktest.c +++ b/tests/qemublocktest.c @@ -117,15 +117,16 @@ static int mymain(void) { int ret = 0; - struct testBackingXMLjsonXMLdata data; + struct testBackingXMLjsonXMLdata xmljsonxmldata; virTestCounterReset("qemu storage source xml->json->xml "); #define TEST_JSON_FORMAT(tpe, xmlstr) \ do { \ - data.type = tpe; \ - data.xml = xmlstr; \ - if (virTestRun(virTestCounterNext(), testBackingXMLjsonXML, &data) < 0) \ + xmljsonxmldata.type = tpe; \ + xmljsonxmldata.xml = xmlstr; \ + if (virTestRun(virTestCounterNext(), testBackingXMLjsonXML, \ + &xmljsonxmldata) < 0) \ ret = -1; \ } while (0) -- GitLab