The jfs_user.h, which is used by the journal functions didn't include config.h before including e2fsck.h. This caused the e2fsck structure to be different compared how it's compiled for the other e2fsck source files. Signed-off-by: Theodore Ts'o <tytso@xxxxxxx> --- e2fsck/jfs_user.h | 1 + 1 file changed, 1 insertion(+) diff --git a/e2fsck/jfs_user.h b/e2fsck/jfs_user.h index 828979514..a1c6951cb 100644 --- a/e2fsck/jfs_user.h +++ b/e2fsck/jfs_user.h @@ -27,6 +27,7 @@ /* * Pull in the definition of the e2fsck context structure */ +#include "config.h" #include "e2fsck.h" #endif -- 2.18.0.rc0