From 65055216b2fad96b3819c0c93dd628c1298a8d7b Mon Sep 17 00:00:00 2001 From: suter Date: Tue, 7 Jan 2014 12:28:27 +0100 Subject: [PATCH] respect the wishes of the blamee ;) --- src/xbt/mmalloc/mfree.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xbt/mmalloc/mfree.c b/src/xbt/mmalloc/mfree.c index a39542fabb..ebbccaf0df 100644 --- a/src/xbt/mmalloc/mfree.c +++ b/src/xbt/mmalloc/mfree.c @@ -34,7 +34,7 @@ void mfree(struct mdesc *mdp, void *ptr) block = BLOCK(ptr); if ((char *) ptr < (char *) mdp->heapbase || block > mdp->heapsize) { - fprintf(stderr,"Ouch, this pointer is not mine. I refuse to free it. I refuse it to die!!\n"); + fprintf(stderr,"Ouch, this pointer is not mine. I refuse to free it. I'd rather die than freeing it!!\n"); abort(); } -- 2.20.1