aboutsummaryrefslogtreecommitdiff
path: root/contrib/xml2/xpath.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/xml2/xpath.c')
-rw-r--r--contrib/xml2/xpath.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/xml2/xpath.c b/contrib/xml2/xpath.c
index 3dfcdadf96b..5ced182d3c4 100644
--- a/contrib/xml2/xpath.c
+++ b/contrib/xml2/xpath.c
@@ -65,21 +65,21 @@ char *pgxml_errorMsg = NULL; /* overall error message */
static void *
pgxml_palloc(size_t size)
{
-/* elog(DEBUG1,"Alloc %d in CMC %x",size,CurrentMemoryContext); */
+/* elog(DEBUG1,"Alloc %d in CMC %p",size,CurrentMemoryContext); */
return palloc(size);
}
static void *
pgxml_repalloc(void *ptr, size_t size)
{
-/* elog(DEBUG1,"ReAlloc in CMC %x",CurrentMemoryContext);*/
+/* elog(DEBUG1,"ReAlloc in CMC %p",CurrentMemoryContext);*/
return repalloc(ptr, size);
}
static void
pgxml_pfree(void *ptr)
{
-/* elog(DEBUG1,"Free in CMC %x",CurrentMemoryContext); */
+/* elog(DEBUG1,"Free in CMC %p",CurrentMemoryContext); */
pfree(ptr);
}