diff options
| author | cegger <cegger@NetBSD.org> | 2008-12-17 20:51:31 +0000 |
|---|---|---|
| committer | cegger <cegger@NetBSD.org> | 2008-12-17 20:51:31 +0000 |
| commit | 9b87d582bdf58e8566275afe8449158af3ad5e2d (patch) | |
| tree | c8c7d766a6e7c842404ffbf46ec0c4ada9382bea /sys/dev/raidframe | |
| parent | c60be09da192479614ef688c231d09320715c12d (diff) | |
kill MALLOC and FREE macros.
Diffstat (limited to 'sys/dev/raidframe')
| -rw-r--r-- | sys/dev/raidframe/rf_shutdown.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/raidframe/rf_shutdown.c b/sys/dev/raidframe/rf_shutdown.c index 29b3fdec1ab..1b4747e12ed 100644 --- a/sys/dev/raidframe/rf_shutdown.c +++ b/sys/dev/raidframe/rf_shutdown.c @@ -1,4 +1,4 @@ -/* $NetBSD: rf_shutdown.c,v 1.19 2005/12/11 12:23:37 christos Exp $ */ +/* $NetBSD: rf_shutdown.c,v 1.20 2008/12/17 20:51:34 cegger Exp $ */ /* * rf_shutdown.c */ @@ -34,7 +34,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: rf_shutdown.c,v 1.19 2005/12/11 12:23:37 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: rf_shutdown.c,v 1.20 2008/12/17 20:51:34 cegger Exp $"); #include <dev/raidframe/raidframevar.h> @@ -52,7 +52,7 @@ static void rf_FreeShutdownEnt(RF_ShutdownList_t *); static void rf_FreeShutdownEnt(RF_ShutdownList_t *ent) { - FREE(ent, M_RAIDFRAME); + free(ent, M_RAIDFRAME); } #if RF_DEBUG_SHUTDOWN |
