aboutsummaryrefslogtreecommitdiffstats
path: root/epan/wmem/wmem_interval_tree.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/wmem/wmem_interval_tree.c')
-rw-r--r--epan/wmem/wmem_interval_tree.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/wmem/wmem_interval_tree.c b/epan/wmem/wmem_interval_tree.c
index d2300a4116..1d89a06539 100644
--- a/epan/wmem/wmem_interval_tree.c
+++ b/epan/wmem/wmem_interval_tree.c
@@ -33,7 +33,7 @@
#include "wmem_strutl.h"
#include "wmem_interval_tree.h"
#include "wmem_user_cb.h"
-
+#include <wsutil/ws_printf.h> /* ws_debug_printf */
static void
@@ -43,7 +43,7 @@ print_range(const void *value)
if(!value) {
return;
}
- printf("Range: low=%" G_GUINT64_FORMAT " high=%" G_GUINT64_FORMAT " max_edge=%" G_GUINT64_FORMAT "\n", range->low, range->high, range->max_edge);
+ ws_debug_printf("Range: low=%" G_GUINT64_FORMAT " high=%" G_GUINT64_FORMAT " max_edge=%" G_GUINT64_FORMAT "\n", range->low, range->high, range->max_edge);
}
/**