diff options
author | Hans-Joerg Hoexer <hshoexer@cvs.openbsd.org> | 2007-12-09 21:26:58 +0000 |
---|---|---|
committer | Hans-Joerg Hoexer <hshoexer@cvs.openbsd.org> | 2007-12-09 21:26:58 +0000 |
commit | 2c8a7db7516e97c372f1913c57fb31ed42dd6368 (patch) | |
tree | 3edbe869693c913c8cea70754af90430dd5c177b /sys/xfs/xfs_common-bsd.c | |
parent | 09bb7b77fc9b9c3b9536825da994183a8ee39215 (diff) |
MALLOC/FREE -> malloc/free
ok gilles
Diffstat (limited to 'sys/xfs/xfs_common-bsd.c')
-rw-r--r-- | sys/xfs/xfs_common-bsd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/xfs/xfs_common-bsd.c b/sys/xfs/xfs_common-bsd.c index 454df61fbd7..b510805460a 100644 --- a/sys/xfs/xfs_common-bsd.c +++ b/sys/xfs/xfs_common-bsd.c @@ -57,7 +57,7 @@ xfs_alloc(u_int size, xfs_malloc_type type) NNPFSDEB(XDEBMEM, ("xfs_alloc: xfs_allocs - xfs_frees %d\n", xfs_allocs - xfs_frees)); - MALLOC(ret, void *, size, type, M_WAITOK); + ret = malloc(size, type, M_WAITOK); return ret; } @@ -65,7 +65,7 @@ void xfs_free(void *ptr, u_int size, xfs_malloc_type type) { xfs_frees++; - FREE(ptr, type); + free(ptr, type); } #endif /* NNPFS_DEBUG */ |