mirror of
https://github.com/apache/nuttx.git
synced 2025-01-13 01:38:36 +08:00
fs/vfat: Fix typo in the macro DIRSEC_BYTENDX
The DIRSEC_BYTENDX(f, i) is supposed to have DIRSEC_NDXMASK(f) in its expansion instead of DIRSEC_NDXMASK(fs). It went unnoticed in the codebase as DIRSEC_BYTENDX(fs, idx) is the way it is used, and it leads to a similar expansion as desired, and thus it has worked till now without any issues from this. Signed-off-by: Saurav Pal <resyfer.dev@gmail.com>
This commit is contained in:
parent
3e85c1886e
commit
d79e5a4932
2 changed files with 3 additions and 1 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -63,3 +63,5 @@ uImage
|
|||
.DS_Store
|
||||
tools/gdb/__pycache__
|
||||
/build
|
||||
.ccls-cache
|
||||
compile_commands.json
|
||||
|
|
|
@ -261,7 +261,7 @@
|
|||
|
||||
#define DIRSEC_NDXMASK(f) (((f)->fs_hwsectorsize - 1) >> 5)
|
||||
#define DIRSEC_NDIRS(f) (((f)->fs_hwsectorsize) >> 5)
|
||||
#define DIRSEC_BYTENDX(f,i) (((i) & DIRSEC_NDXMASK(fs)) << 5)
|
||||
#define DIRSEC_BYTENDX(f,i) (((i) & DIRSEC_NDXMASK(f)) << 5)
|
||||
|
||||
#define SEC_NDXMASK(f) ((f)->fs_hwsectorsize - 1)
|
||||
#define SEC_NSECTORS(f,n) ((n) / (f)->fs_hwsectorsize)
|
||||
|
|
Loading…
Reference in a new issue