aboutsummaryrefslogtreecommitdiff
path: root/sys/fs/msdosfs
diff options
context:
space:
mode:
authorKonstantin Belousov <kib@FreeBSD.org>2010-02-13 12:50:09 +0000
committerKonstantin Belousov <kib@FreeBSD.org>2010-02-13 12:50:09 +0000
commit699d124f23b3c5d4a8f715fafb9cd9cef7cb23a7 (patch)
treeef1971525dbd1256e217f760a80b2d337c1225f9 /sys/fs/msdosfs
parent48d1bcf8e01f06e1152554859ac1be6659ebf3e9 (diff)
downloadsrc-699d124f23b3c5d4a8f715fafb9cd9cef7cb23a7.tar.gz
src-699d124f23b3c5d4a8f715fafb9cd9cef7cb23a7.zip
Fix function name in the comment in the second location too.
Submitted by: ed MFC after: 1 week
Notes
Notes: svn path=/head/; revision=203828
Diffstat (limited to 'sys/fs/msdosfs')
-rw-r--r--sys/fs/msdosfs/msdosfs_denode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/fs/msdosfs/msdosfs_denode.c b/sys/fs/msdosfs/msdosfs_denode.c
index e8adc50c64ac..b689b5d3ae0b 100644
--- a/sys/fs/msdosfs/msdosfs_denode.c
+++ b/sys/fs/msdosfs/msdosfs_denode.c
@@ -146,7 +146,7 @@ deget(pmp, dirclust, diroffset, depp)
/*
* Do the malloc before the getnewvnode since doing so afterward
* might cause a bogus v_data pointer to get dereferenced
- * elsewhere if MALLOC should block.
+ * elsewhere if malloc should block.
*/
ldep = malloc(sizeof(struct denode), M_MSDOSFSNODE, M_WAITOK | M_ZERO);