Changeset 26ad20b in mainline for uspace/app/mkfat/fat.h


Ignore:
Timestamp:
2011-08-24T22:38:31Z (13 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
24738df
Parents:
81e9cb3
Message:

Cleanup mkfat.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/mkfat/fat.h

    r81e9cb3 r26ad20b  
    4747#define FAT32   32
    4848
    49 #define FAT_SIZE(a) ((a==FAT12)? 1.5 : ( (a==FAT16)? 2 : 4  ) )
     49#define FAT_SIZE(a) (((a) == FAT12) ? 1.5 : (((a) == FAT16) ? 2 : 4))
    5050
    5151typedef struct fat_bs {
Note: See TracChangeset for help on using the changeset viewer.