summaryrefslogtreecommitdiff
path: root/nuttx/fs/fat
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-09-28 01:46:31 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-09-28 01:46:31 +0000
commitfb2ef5eeadae97a04f0e35783912f0ecef7dee65 (patch)
treeef7166d0b2815a0a93e2d44005b131bbc4e6061c /nuttx/fs/fat
parent20e6ac9a20c53b82b250ce19afb89a737890de0d (diff)
downloadpx4-nuttx-fb2ef5eeadae97a04f0e35783912f0ecef7dee65.tar.gz
px4-nuttx-fb2ef5eeadae97a04f0e35783912f0ecef7dee65.tar.bz2
px4-nuttx-fb2ef5eeadae97a04f0e35783912f0ecef7dee65.zip
Cosmetic changes to fat and mass storage device
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3985 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/fs/fat')
-rw-r--r--nuttx/fs/fat/fs_fat32dirent.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/fs/fat/fs_fat32dirent.c b/nuttx/fs/fat/fs_fat32dirent.c
index 6dfdc2022..6e6d82d10 100644
--- a/nuttx/fs/fat/fs_fat32dirent.c
+++ b/nuttx/fs/fat/fs_fat32dirent.c
@@ -1133,7 +1133,7 @@ static bool fat_cmplfname(const uint8_t *direntry, const uint8_t *substr)
match = fat_cmplfnchunk(chunk, substr, 5);
if (match && len >= 5)
{
- /* Check bytes 6-11. Note that len == 5, the substring passed to
+ /* Check bytes 6-11. Note that if len == 5, the substring passed to
* fat_cmplfnchunk() will point to the NUL terminator of substr.
* In this case, fat_cmplfnchunk() will only verify that the
* directory entry is also NUL terminated.
@@ -1143,7 +1143,7 @@ static bool fat_cmplfname(const uint8_t *direntry, const uint8_t *substr)
match = fat_cmplfnchunk(chunk, &substr[5], 6);
if (match && len >= 11)
{
- /* Check bytes 12-13. Note that len == 11, the substring passed to
+ /* Check bytes 12-13. Note that if len == 11, the substring passed to
* fat_cmplfnchunk() will point to the NUL terminator of substr.
* In this case, fat_cmplfnchunk() will only verify that the
* directory entry is also NUL terminated.