Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
respect the wishes of the blamee ;)
[simgrid.git] / 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();
   }