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 <berrange@redhat.com>
This commit is contained in:
Daniel P. Berrange 2012-03-20 13:37:55 +00:00
parent c33dae3175
commit 94410848e1

View File

@ -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;