]> AND Public Git Repository - simgrid.git/blobdiff - src/xbt/mmalloc/mrealloc.c
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Spell check.
[simgrid.git] / src / xbt / mmalloc / mrealloc.c
index 2d3c1ce4b20319e7670922975fee5a44b53b7494..20a0290647dc2219a43a996165f5e318d9b5d541 100644 (file)
@@ -43,7 +43,7 @@ void *mrealloc(xbt_mheap_t mdp, void *ptr, size_t size)
 
   size_t requested_size = size; // The amount of memory requested by user, for real
 
-  /* Work even if the user was stupid enough to ask a ridicullously small block (even 0-length),
+  /* Work even if the user was stupid enough to ask a ridiculously small block (even 0-length),
    *    ie return a valid block that can be realloced and freed.
    * glibc malloc does not use this trick but return a constant pointer, but we need to enlist the free fragments later on.
    */