aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDaniel P. Berrange <berrange@redhat.com>2010-02-09 18:15:41 +0000
committerDaniel P. Berrange <berrange@redhat.com>2010-02-10 11:49:23 +0000
commitcaa805ea64734ea28b52a9793689fdb6a20cfbc0 (patch)
treeeed96d2c2a67a4d3ec717a6cb91e3181c90b8e72 /tests
parentFix security driver configuration (diff)
downloadlibvirt-caa805ea64734ea28b52a9793689fdb6a20cfbc0.tar.gz
libvirt-caa805ea64734ea28b52a9793689fdb6a20cfbc0.tar.bz2
libvirt-caa805ea64734ea28b52a9793689fdb6a20cfbc0.zip
Remove passing of virConnectPtr throughout QEMU driver
Diffstat (limited to 'tests')
-rw-r--r--tests/qemuargv2xmltest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/qemuargv2xmltest.c b/tests/qemuargv2xmltest.c
index 1f1914b6a..8b954e710 100644
--- a/tests/qemuargv2xmltest.c
+++ b/tests/qemuargv2xmltest.c
@@ -49,7 +49,7 @@ static int testCompareXMLToArgvFiles(const char *xml,
if (virtTestLoadFile(xml, &expectxml, MAX_FILE) < 0)
goto fail;
- if (!(vmdef = qemuParseCommandLineString(NULL, driver.caps, cmd)))
+ if (!(vmdef = qemuParseCommandLineString(driver.caps, cmd)))
goto fail;
if (!(actualxml = virDomainDefFormat(NULL, vmdef, 0)))