Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
respect the wishes of the blamee ;)
authorsuter <frederic.suter@cc.in2p3.fr>
Tue, 7 Jan 2014 11:28:27 +0000 (12:28 +0100)
committersuter <frederic.suter@cc.in2p3.fr>
Tue, 7 Jan 2014 11:28:27 +0000 (12:28 +0100)
src/xbt/mmalloc/mfree.c

index a39542f..ebbccaf 100644 (file)
@@ -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();
   }