Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/fat/fat.h

    red903174 r1e4cada  
    8989                        uint16_t        signature;
    9090                } __attribute__ ((packed));
    91                 struct {
     91                struct fat32 {
    9292                        /* FAT32 only */
    9393                        /** Sectors per FAT. */
     
    119119                        /** Signature. */
    120120                        uint16_t        signature;
    121                 } fat32 __attribute__ ((packed));
    122         };
     121                } __attribute__ ((packed));
     122        }; 
    123123} __attribute__ ((packed)) fat_bs_t;
    124124
     
    194194        /** FAT in-core node free list link. */
    195195        link_t                  ffn_link;
    196         aoff64_t                size;
     196        size_t                  size;
    197197        unsigned                lnkcnt;
    198198        unsigned                refcnt;
     
    204204extern void fat_mounted(ipc_callid_t, ipc_call_t *);
    205205extern void fat_mount(ipc_callid_t, ipc_call_t *);
    206 extern void fat_unmounted(ipc_callid_t, ipc_call_t *);
    207 extern void fat_unmount(ipc_callid_t, ipc_call_t *);
    208206extern void fat_lookup(ipc_callid_t, ipc_call_t *);
    209207extern void fat_read(ipc_callid_t, ipc_call_t *);
Note: See TracChangeset for help on using the changeset viewer.