Changeset 1433ecda in mainline for uspace/srv/fs/exfat/exfat_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/exfat/exfat_dentry.h

    r47b2d7e3 r1433ecda  
    6464        uint16_t        label[11];
    6565        uint8_t         _reserved[8];
    66 } __attribute__ ((packed)) exfat_vollabel_dentry_t;
     66} __attribute__((packed)) exfat_vollabel_dentry_t;
    6767
    6868typedef struct {
     
    7171        uint32_t        firstc;
    7272        uint64_t        size;
    73 } __attribute__ ((packed)) exfat_bitmap_dentry_t;
     73} __attribute__((packed)) exfat_bitmap_dentry_t;
    7474
    7575typedef struct {
     
    7979        uint32_t        firstc;
    8080        uint64_t        size;
    81 } __attribute__ ((packed)) exfat_uctable_dentry_t;
     81} __attribute__((packed)) exfat_uctable_dentry_t;
    8282
    8383typedef struct {
     
    8787        uint8_t         guid[16];
    8888        uint8_t         _reserved[10];
    89 } __attribute__ ((packed)) exfat_guid_dentry_t;
     89} __attribute__((packed)) exfat_guid_dentry_t;
    9090
    9191typedef struct {
     
    103103        uint8_t         atime_tz;
    104104        uint8_t         _reserved2[7];
    105 } __attribute__ ((packed)) exfat_file_dentry_t;
     105} __attribute__((packed)) exfat_file_dentry_t;
    106106
    107107typedef struct {
     
    115115        uint32_t        firstc;
    116116        uint64_t        data_size;
    117 } __attribute__ ((packed)) exfat_stream_dentry_t;
     117} __attribute__((packed)) exfat_stream_dentry_t;
    118118
    119119typedef struct {
    120120        uint8_t         flags;
    121121        uint16_t        name[EXFAT_NAME_PART_LEN];
    122 } __attribute__ ((packed)) exfat_name_dentry_t;
     122} __attribute__((packed)) exfat_name_dentry_t;
    123123
    124124
     
    134134                exfat_name_dentry_t     name;
    135135        };
    136 } __attribute__ ((packed)) exfat_dentry_t;
     136} __attribute__((packed)) exfat_dentry_t;
    137137
    138138
Note: See TracChangeset for help on using the changeset viewer.