Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
I meant to paraphrase the expression 'give me liberty or give me death', actually
[simgrid.git] / src / xbt / mmalloc / mfree.c
index ebbccaf..a7241fc 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'd rather die than freeing it!!\n");
+    fprintf(stderr,"Ouch, this pointer is not mine, I refuse to free it. Give me valid pointers, or give me death!!\n");
     abort();
   }