diff options
-rw-r--r-- | ext2fs/hyper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext2fs/hyper.c b/ext2fs/hyper.c index dd09442a..82b06d17 100644 --- a/ext2fs/hyper.c +++ b/ext2fs/hyper.c @@ -134,7 +134,7 @@ get_hypermetadata (void) diskfs_readonly = 1; } if (le16toh (sblock->s_inode_size) != EXT2_GOOD_OLD_INODE_SIZE) - ext2_panic ("inode size %d isn't supported", le16toh (sblock->s_inode_size)); + ext2_panic ("inode size %d isn't supported, only %d is supported", le16toh (sblock->s_inode_size), EXT2_GOOD_OLD_INODE_SIZE); if (EXT2_HAS_COMPAT_FEATURE (sblock, EXT3_FEATURE_COMPAT_HAS_JOURNAL)) ext2_warning ("mounting ext3 filesystem as ext2"); } |