From: Theodore Ts'o Date: Thu, 1 Sep 2016 00:46:49 +0000 (-0400) Subject: e2fsck: fix an alignment problem which causes sparc64 in the journal code X-Git-Tag: v1.43.2~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c4d54aa2f71c9a263a6dcf52b0ae9cd8224087fe;p=thirdparty%2Fe2fsprogs.git e2fsck: fix an alignment problem which causes sparc64 in the journal code Signed-off-by: Theodore Ts'o --- diff --git a/e2fsck/jfs_user.h b/e2fsck/jfs_user.h index 16185a5b2..75877f33d 100644 --- a/e2fsck/jfs_user.h +++ b/e2fsck/jfs_user.h @@ -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]; };