Changeset 1433ecda in mainline for uspace/srv/fs/fat/fat_dentry.h


Ignore:
Timestamp:
2018-04-04T15:42:37Z (6 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2c4e1cc
Parents:
47b2d7e3
Message:

Fix cstyle: make ccheck-fix and commit only files where all the changes are good.

File:
1 edited

Legend:

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

    r47b2d7e3 r1433ecda  
    117117                        uint16_t        eaidx;          /* FAT12/FAT16 */
    118118                        uint16_t        firstc_hi;      /* FAT32 */
    119                 } __attribute__ ((packed));
     119                } __attribute__((packed));
    120120                uint16_t        mtime;
    121121                uint16_t        mdate;
     
    123123                        uint16_t        firstc;         /* FAT12/FAT16 */
    124124                        uint16_t        firstc_lo;      /* FAT32 */
    125                 } __attribute__ ((packed));
     125                } __attribute__((packed));
    126126                uint32_t        size;
    127         } __attribute__ ((packed));
     127        } __attribute__((packed));
    128128        struct {
    129129                uint8_t         order;
     
    135135                uint16_t        firstc_lo; /* MUST be 0 */
    136136                uint16_t        part3[FAT_LFN_PART3_SIZE];
    137         } __attribute__ ((packed)) lfn;
    138 } __attribute__ ((packed)) fat_dentry_t;
     137        } __attribute__((packed)) lfn;
     138} __attribute__((packed)) fat_dentry_t;
    139139
    140140extern int fat_dentry_namecmp(char *, const char *);
Note: See TracChangeset for help on using the changeset viewer.