X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/blobdiff_plain/d901c8888560a1745ecee7c8d5ddad6229aafc66..12ed8a1f566d8c2020b988462db74435c716088a:/lmem.c?ds=sidebyside diff --git a/lmem.c b/lmem.c index 1d4ae87..ed79630 100644 --- a/lmem.c +++ b/lmem.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: lmem.c,v 1.6 2004/04/08 01:36:15 mdw Exp $ + * $Id$ * * Locked memory allocation (Unix-specific) * @@ -310,7 +310,7 @@ void l_destroy(lmem *lm) if (lm->f & LF_LOCKED) munmap(lm->p, lm->sz); else - free(lm->p); + free(lm->p); /*sic*/ } /* --- @l_report@ --- *