From 8a7cc40a69be3e9b6ac9aac8304aaee81be34405 Mon Sep 17 00:00:00 2001 From: theoricien Date: Sun, 14 Jun 2020 00:06:52 +0200 Subject: [PATCH] remove useless debug printf --- src/heapview.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/heapview.c b/src/heapview.c index 49a27a2..3ab79f2 100644 --- a/src/heapview.c +++ b/src/heapview.c @@ -40,8 +40,6 @@ heap_init (void) info = (struct ptm2v_info *) malloc (sizeof (struct ptm2v_info)); ptasserte (info != NULL); - printf("----> %p\n", r_malloc); - printf("main_arena = r_malloc + 0x%x\n", OFF_MAIN_ARENA); info->main_arena = r_malloc + OFF_MAIN_ARENA; info->heap_base = heap_base; info->free = _ptm2v_info_free;