
20 Mar
2012
20 Mar
'12
6:33 p.m.
From: "Daniel P. Berrange" <berrange@redhat.com> 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 --- src/util/viruri.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/util/viruri.c b/src/util/viruri.c index 0b25679..1d2dca4 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; -- 1.7.7.6