aboutsummaryrefslogtreecommitdiff
path: root/sys/fs/udf
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2005-02-10 12:02:37 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2005-02-10 12:02:37 +0000
commitc711aea6cae4409bc957bf327fd5b23ada7fdf21 (patch)
treee482f2a3b11d8b31aaf943a15d6e90aa0b298dd1 /sys/fs/udf
parentd67c43b3a9bd14530efcd2b51905aeaf4a25ad87 (diff)
downloadsrc-c711aea6cae4409bc957bf327fd5b23ada7fdf21.tar.gz
src-c711aea6cae4409bc957bf327fd5b23ada7fdf21.zip
Make a bunch of malloc types static.
Found by: src/tools/tools/kernxref
Notes
Notes: svn path=/head/; revision=141616
Diffstat (limited to 'sys/fs/udf')
-rw-r--r--sys/fs/udf/udf_vfsops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/fs/udf/udf_vfsops.c b/sys/fs/udf/udf_vfsops.c
index ef3ae3f18efd..519d41a8a3b2 100644
--- a/sys/fs/udf/udf_vfsops.c
+++ b/sys/fs/udf/udf_vfsops.c
@@ -99,7 +99,7 @@
#include <fs/udf/udf.h>
#include <fs/udf/udf_mount.h>
-MALLOC_DEFINE(M_UDFMOUNT, "UDF mount", "UDF mount structure");
+static MALLOC_DEFINE(M_UDFMOUNT, "UDF mount", "UDF mount structure");
MALLOC_DEFINE(M_UDFFENTRY, "UDF fentry", "UDF file entry structure");
struct iconv_functions *udf_iconv = NULL;