diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-07-21 22:00:56 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-07-21 22:00:56 +0000 |
commit | 168660f24dfc46c2702acbe4701a446f42a59578 (patch) | |
tree | f431368afbf6b1b71809cf3fd904d800ea126f4d /include/linux/hfs_sysdep.h | |
parent | 6420f767924fa73b0ea267864d96820815f4ba5a (diff) |
Merge with Linux 2.4.0-test5-pre3.
Diffstat (limited to 'include/linux/hfs_sysdep.h')
-rw-r--r-- | include/linux/hfs_sysdep.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/hfs_sysdep.h b/include/linux/hfs_sysdep.h index 5172139ec..0c0b9bb91 100644 --- a/include/linux/hfs_sysdep.h +++ b/include/linux/hfs_sysdep.h @@ -61,7 +61,7 @@ extern inline void *hfs_malloc(unsigned int size) { } extern inline void hfs_free(void *ptr, unsigned int size) { - kfree_s(ptr, size); + kfree(ptr); #if defined(DEBUG_ALL) || defined(DEBUG_MEM) hfs_warn("%ld bytes allocation at %s:%u\n", (hfs_alloc -= ptr ? size : 0), __FILE__, __LINE__); |