Mercurial > hg > xemacs-beta
diff src/dynarr.c @ 1726:a8d8f419b459
[xemacs-hg @ 2003-09-30 15:26:34 by james]
Add type information to xfree to avoid alias creation.
author | james |
---|---|
date | Tue, 30 Sep 2003 15:27:01 +0000 |
parents | b531bf8658e9 |
children | ecf1ebac70d8 |
line wrap: on
line diff
--- a/src/dynarr.c Mon Sep 29 21:53:04 2003 +0000 +++ b/src/dynarr.c Tue Sep 30 15:27:01 2003 +0000 @@ -223,9 +223,9 @@ Dynarr *dy = (Dynarr *) d; if (dy->base && !DUMPEDP (dy->base)) - xfree (dy->base); + xfree (dy->base, void *); if(!DUMPEDP (dy)) - xfree (dy); + xfree (dy, Dynarr *); } #ifdef MEMORY_USAGE_STATS