
21 Mar
2012
21 Mar
'12
11:55 p.m.
On 2012年03月21日 01:33, Daniel P. Berrange wrote:
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;
ACK