diff options
author | Konstantin Belousov <kib@FreeBSD.org> | 2010-02-13 12:50:09 +0000 |
---|---|---|
committer | Konstantin Belousov <kib@FreeBSD.org> | 2010-02-13 12:50:09 +0000 |
commit | 699d124f23b3c5d4a8f715fafb9cd9cef7cb23a7 (patch) | |
tree | ef1971525dbd1256e217f760a80b2d337c1225f9 /sys/fs/msdosfs | |
parent | 48d1bcf8e01f06e1152554859ac1be6659ebf3e9 (diff) | |
download | src-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.c | 2 |
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); |