Place file system types in alphabetical order

This commit is contained in:
Curtis Gedak 2012-02-03 16:12:37 -07:00
parent a5b89524d4
commit d2d830108b
1 changed files with 15 additions and 15 deletions

View File

@ -56,23 +56,23 @@ enum FILESYSTEM
FS_EXTENDED = 3,
FS_BTRFS = 4,
FS_EXT2 = 5,
FS_EXT3 = 6,
FS_EXT4 = 7,
FS_LINUX_SWAP = 8,
FS_EXFAT = 5, /* Also known as fat64 */
FS_EXT2 = 6,
FS_EXT3 = 7,
FS_EXT4 = 8,
FS_FAT16 = 9,
FS_FAT32 = 10,
FS_EXFAT = 11, /* Also known as fat64 */
FS_NTFS = 12,
FS_REISERFS = 13,
FS_REISER4 = 14,
FS_XFS = 15,
FS_JFS = 16,
FS_HFS = 17,
FS_HFSPLUS = 18,
FS_UFS = 19,
FS_NILFS2 = 20,
FS_LVM2_PV = 21,
FS_HFS = 11,
FS_HFSPLUS = 12,
FS_JFS = 13,
FS_LINUX_SWAP = 14,
FS_LVM2_PV = 15,
FS_NILFS2 = 16,
FS_NTFS = 17,
FS_REISER4 = 18,
FS_REISERFS = 19,
FS_UFS = 20,
FS_XFS = 21,
FS_USED = 22,
FS_UNUSED = 23,