1234567891011121314151617181920212223242526272829303132333435363738 |
- --- dosfstools-3.0.26.orig/src/fsck.fat.h 2014-02-08 18:53:10.000000000 +0100
- +++ dosfstools-3.0.26/src/fsck.fat.h 2014-03-26 13:29:32.000000000 +0100
- @@ -143,8 +143,8 @@ typedef struct {
- typedef struct _dos_file {
- DIR_ENT dir_ent;
- char *lfn;
- - loff_t offset;
- - loff_t lfn_offset;
- + off_t offset;
- + off_t lfn_offset;
- struct _dos_file *parent;
- struct _dos_file *next;
- struct _dos_file *first;
- @@ -157,19 +157,19 @@ typedef struct {
-
- typedef struct {
- int nfats;
- - loff_t fat_start;
- + off_t fat_start;
- unsigned int fat_size;
- unsigned int fat_bits;
- unsigned int eff_fat_bits;
- uint32_t root_cluster;
- - loff_t root_start;
- + off_t root_start;
- unsigned int root_entries;
- - loff_t data_start;
- + off_t data_start;
- unsigned int cluster_size;
- uint32_t clusters;
- - loff_t fsinfo_start;
- + off_t fsinfo_start;
- long free_clusters;
- - loff_t backupboot_start;
- + off_t backupboot_start;
- unsigned char *fat;
- DOS_FILE **cluster_owner;
- char *label;
|