[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[libvirt] [PATCH 1/5] use virReportErrorHelper instead of xmlGenericError
- From: Christophe Fergeau <teuf gnome org>
- To: libvir-list redhat com
- Cc: Christophe Fergeau <teuf gnome org>
- Subject: [libvirt] [PATCH 1/5] use virReportErrorHelper instead of xmlGenericError
- Date: Thu, 17 Feb 2011 22:14:55 +0100
---
src/util/hash.c | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/src/util/hash.c b/src/util/hash.c
index c7a52c9..ba156b1 100644
--- a/src/util/hash.c
+++ b/src/util/hash.c
@@ -190,9 +190,10 @@ virHashGrow(virHashTablePtr table, int size)
VIR_FREE(oldtable);
#ifdef DEBUG_GROW
- xmlGenericError(xmlGenericErrorContext,
- "virHashGrow : from %d to %d, %d elems\n", oldsize,
- size, nbElem);
+ virReportErrorHelper(NULL, VIR_FROM_NONE, VIR_ERR_OK, __FILE__,
+ __FUNCTION__, __LINE__,
+ "virHashGrow : from %d to %d, %d elems",
+ oldsize, size, nbElem);
#endif
return (0);
--
1.7.4
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]