diff options
| author | 2008-05-19 18:42:11 +0000 | |
|---|---|---|
| committer | 2008-05-19 18:42:11 +0000 | |
| commit | 1a3d5b682a16dca44726b64c324da0dacb5969dc (patch) | |
| tree | 27b5be9016800f98bce9f237660c58a9e124ffd1 /sys/dev/raidframe/rf_shutdown.c | |
| parent | regen (diff) | |
| download | wireguard-openbsd-1a3d5b682a16dca44726b64c324da0dacb5969dc.tar.xz wireguard-openbsd-1a3d5b682a16dca44726b64c324da0dacb5969dc.zip | |
Change all remaining MD uses of MALLOC and FREE into proper malloc() and
free() calls; prodded by chl@, ok krw@
Diffstat (limited to 'sys/dev/raidframe/rf_shutdown.c')
| -rw-r--r-- | sys/dev/raidframe/rf_shutdown.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/raidframe/rf_shutdown.c b/sys/dev/raidframe/rf_shutdown.c index be13f747f50..1ff9b585916 100644 --- a/sys/dev/raidframe/rf_shutdown.c +++ b/sys/dev/raidframe/rf_shutdown.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rf_shutdown.c,v 1.5 2002/12/16 07:01:05 tdeval Exp $ */ +/* $OpenBSD: rf_shutdown.c,v 1.6 2008/05/19 18:42:13 miod Exp $ */ /* $NetBSD: rf_shutdown.c,v 1.6 2000/01/13 23:41:18 oster Exp $ */ /* @@ -45,7 +45,7 @@ void rf_FreeShutdownEnt(RF_ShutdownList_t *); void rf_FreeShutdownEnt(RF_ShutdownList_t *ent) { - FREE(ent, M_RAIDFRAME); + free(ent, M_RAIDFRAME); } int |
