nicholasbishop / ext4-view-rs

Rust library for reading ext2/ext4 filesystems
https://crates.io/crates/ext4-view
Apache License 2.0
8 stars 2 forks source link

superblock: Drop repr(C) #34

Closed nicholasbishop closed 4 months ago

nicholasbishop commented 4 months ago

In an earlier design the Superblock struct needed to match the on-disk layout of the superblock, so it was marked repr(C). This is no longer the case; only a few fields of the superblock are stored now, so drop the repr(C).