e2fsck: fix an alignment problem which causes sparc64 in the journal code

Signed-off-by: Theodore Ts'o <tytso@mit.edu>
next
Theodore Ts'o 2016-08-31 20:46:49 -04:00
parent 22137497fa
commit c4d54aa2f7
1 changed files with 3 additions and 3 deletions

View File

@ -38,10 +38,10 @@ struct buffer_head {
#endif
io_channel b_io;
int b_size;
unsigned long long b_blocknr;
int b_dirty;
int b_uptodate;
int b_err;
unsigned int b_dirty:1;
unsigned int b_uptodate:1;
unsigned long long b_blocknr;
char b_data[1024];
};