Changeset 1433ecda in mainline for uspace/lib/minix/minix.h


Ignore:
Timestamp:
2018-04-04T15:42:37Z (7 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/lib/minix/minix.h

    r47b2d7e3 r1433ecda  
    113113        /* Total number of zones on the device (V2 only) */
    114114        uint32_t        s_nzones2;
    115 } __attribute__ ((packed));
     115} __attribute__((packed));
    116116
    117117
     
    144144        /* Filesystem disk format version */
    145145        int8_t          s_disk_version;
    146 } __attribute__ ((packed));
     146} __attribute__((packed));
    147147
    148148/* MinixFS V1 inode structure as it is on disk */
     
    158158        /* Block numbers for indirect zones */
    159159        uint16_t        i_izone[V1_NR_INDIRECT_ZONES];
    160 } __attribute__ ((packed));
     160} __attribute__((packed));
    161161
    162162/* MinixFS V2 inode structure as it is on disk (also valid for V3). */
     
    174174        /* Block numbers for indirect zones */
    175175        uint32_t        i_izone[V2_NR_INDIRECT_ZONES];
    176 } __attribute__ ((packed));
     176} __attribute__((packed));
    177177
    178178/* MinixFS V1/V2 directory entry on-disk structure */
Note: See TracChangeset for help on using the changeset viewer.