fix another printf("%s", NULL) case

This commit is contained in:
John Levon 2009-01-29 17:18:24 +00:00
parent 87e4ded54a
commit e96d88ff3d
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Thu Jan 29 17:15:18 GMT 2009 John Levon <john.levon@sun.com>
* src/libvirt.c: fix another printf("%s", NULL) case
Thu Jan 29 09:03:17 PST 2009 John Levon <john.levon@sun.com>
* src/xend_internal.c: correctly enable floppies for HVM guests.

View File

@ -6924,7 +6924,7 @@ error:
int
virNodeNumOfDevices(virConnectPtr conn, const char *cap, unsigned int flags)
{
DEBUG("conn=%p, cap=%s, flags=%d", conn, cap, flags);
DEBUG("conn=%p, cap=%s, flags=%d", conn, NULLSTR(cap), flags);
virResetLastError();