mirror of https://gitee.com/openkylin/libvirt.git
fix another printf("%s", NULL) case
This commit is contained in:
parent
87e4ded54a
commit
e96d88ff3d
|
@ -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.
|
||||
|
|
|
@ -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();
|
||||
|
||||
|
|
Loading…
Reference in New Issue