diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2013-03-10 09:21:57 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2013-03-10 09:21:57 +0000 |
commit | dddb709c433f688597f6b8d8130eb42bd8d1667e (patch) | |
tree | d16158221361da7ba6be1490d4c3cba259eb72af | |
parent | df9b04c87fa803d2237c407ba17845fe1ca53674 (diff) | |
download | lufa-dddb709c433f688597f6b8d8130eb42bd8d1667e.tar.gz lufa-dddb709c433f688597f6b8d8130eb42bd8d1667e.tar.bz2 lufa-dddb709c433f688597f6b8d8130eb42bd8d1667e.zip |
Oops - fix broken FAT_DATE() and FAT_TIME() macros.
-rw-r--r-- | Bootloaders/Incomplete/MassStorage/Lib/VirtualFAT.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Bootloaders/Incomplete/MassStorage/Lib/VirtualFAT.h b/Bootloaders/Incomplete/MassStorage/Lib/VirtualFAT.h index 66b582417..af4548898 100644 --- a/Bootloaders/Incomplete/MassStorage/Lib/VirtualFAT.h +++ b/Bootloaders/Incomplete/MassStorage/Lib/VirtualFAT.h @@ -80,7 +80,7 @@ * * \return Given time encoded as a FAT filesystem timestamp */ - #define FAT_TIME(h, m, s) ((hh << 11) | (mm << 5) | (ss >> 1)) + #define FAT_TIME(hh, mm, ss) ((hh << 11) | (mm << 5) | (ss >> 1)) /** Converts a given date in DD/MM/YYYY format to a FAT filesystem date. * @@ -90,7 +90,7 @@ * * \return Given date encoded as a FAT filesystem datestamp */ - #define FAT_DATE(d, m, y) (((yyyy - 1980) << 9) | (mm << 5) | (dd << 0)) + #define FAT_DATE(dd, mm, yyyy) (((yyyy - 1980) << 9) | (mm << 5) | (dd << 0)) /* Type Definitions: */ /** FAT boot block structure definition, used to identify the core |