diff --git a/src/sys/ubixfsv2/main.cpp b/src/sys/ubixfsv2/main.cpp index d01ba64..01d4f2b 100644 --- a/src/sys/ubixfsv2/main.cpp +++ b/src/sys/ubixfsv2/main.cpp @@ -144,6 +144,7 @@ cout << sizeof(struct bNode) << endl; cout << sizeof(struct ubixfsInode) << endl; +cout << sizeof(struct diskSuperBlock) << endl; // tree->Info(); free(inode); diff --git a/src/sys/ubixfsv2/superblock.h b/src/sys/ubixfsv2/superblock.h index ed5c2e2..856f000 100644 --- a/src/sys/ubixfsv2/superblock.h +++ b/src/sys/ubixfsv2/superblock.h @@ -58,7 +58,7 @@ // container list inodeAddr containers __attribute__ ((packed)); - int32 pad[8] __attribute__ ((packed)); + int32 pad[92] __attribute__ ((packed)); } diskSuperBlock;