diff options
author | Rob Landley <rob@landley.net> | 2007-01-27 20:43:26 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2007-01-27 20:43:26 -0500 |
commit | 43d7e909cb98e02ea11877f7516e721ac0aa5b5d (patch) | |
tree | 67787b85047e267ff4385a46f6c408b6d44f191f /toys/e2fs.h | |
parent | 22eca62ff07e97063eb77dc61660a91e12fed182 (diff) | |
download | toybox-43d7e909cb98e02ea11877f7516e721ac0aa5b5d.tar.gz |
Move superblock initialization to a function. Trim unused padding from
superblock.
Diffstat (limited to 'toys/e2fs.h')
-rw-r--r-- | toys/e2fs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/e2fs.h b/toys/e2fs.h index 49eb4c40..ef8f5e8b 100644 --- a/toys/e2fs.h +++ b/toys/e2fs.h @@ -61,7 +61,7 @@ struct ext2_superblock { uint32_t first_meta_bg; // First metablock block group uint32_t mkfs_time; // Creation timestamp uint32_t jnl_blocks[17]; // Backup of journal inode - uint32_t reserved[172]; // Padding to the end of the block + // uint32_t reserved[172]; // Padding to the end of the block }; struct ext2_group |