From: suter Date: Tue, 7 Jan 2014 11:28:27 +0000 (+0100) Subject: respect the wishes of the blamee ;) X-Git-Tag: v3_11_beta~158 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/65055216b2fad96b3819c0c93dd628c1298a8d7b respect the wishes of the blamee ;) --- 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(); }