From: Daniel P. Berrange Date: Tue, 20 Mar 2012 13:37:55 +0000 (+0000) Subject: s/xmlURIPtr/virURIPtr/ in virURIFormat impl X-Git-Tag: v0.9.11-rc1~34 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=94410848e1b3c3353bcd776eea12f00e35075e2d;p=thirdparty%2Flibvirt.git s/xmlURIPtr/virURIPtr/ in virURIFormat impl The parameter in the virURIFormat impl mistakenly used the xmlURIPtr type, instead of virURIPtr. Since they will soon cease to be identical, this needs fixing Signed-off-by: Daniel P. Berrange --- diff --git a/src/util/viruri.c b/src/util/viruri.c index 0b25679394..1d2dca4b39 100644 --- a/src/util/viruri.c +++ b/src/util/viruri.c @@ -63,7 +63,7 @@ virURIParse(const char *uri) * @returns the constructed uri as a string */ char * -virURIFormat(xmlURIPtr uri) +virURIFormat(virURIPtr uri) { char *backupserver = NULL; char *tmpserver = NULL;