diff options
author | Jeff Bailey <jbailey@gnu.org> | 2003-07-29 14:33:01 +0000 |
---|---|---|
committer | Jeff Bailey <jbailey@gnu.org> | 2003-07-29 14:33:01 +0000 |
commit | 1abf876167e669d08e00c6376b8f8ac5e21a0f15 (patch) | |
tree | 09aaa96a83b861d17dbd866a67b871f97da90f29 /fatfs/fatfs.h | |
parent | 4ffeed83355cf158013a3ef2c6b0e9a295dcbc76 (diff) |
2003-07-29 Jeff Bailey <jbailey@nisa.net>
* fatfs.h (LOG2_BLOCKS_PER_CLUSTER): Fix typo.
Diffstat (limited to 'fatfs/fatfs.h')
-rw-r--r-- | fatfs/fatfs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fatfs/fatfs.h b/fatfs/fatfs.h index a741d875..167ad583 100644 --- a/fatfs/fatfs.h +++ b/fatfs/fatfs.h @@ -95,7 +95,7 @@ extern vm_address_t zerocluster; extern struct dirrect dr_root_node; -#define LOG2_BLOCKS_PER_CLUSTER +#define LOG2_BLOCKS_PER_CLUSTER \ (log2_bytes_per_cluster - store->logs2_block_size) #define round_cluster(offs) \ |