]> git.hungrycats.org Git - linux/commitdiff
[PATCH] typo in fs_ufs_super.c:ufs_fill_super()
authorMikael Pettersson <mikpe@csd.uu.se>
Thu, 1 Aug 2002 05:22:05 +0000 (22:22 -0700)
committerChristoph Hellwig <hch@sb.bsdonline.org>
Thu, 1 Aug 2002 05:22:05 +0000 (22:22 -0700)
Obvious typo: checking block size but printing fragment size.

fs/ufs/super.c

index a046374ab085f39d07b6604b92b0d232fc519402..c60ae7e1fcde3af1d8e97e6c8df719e0c23ccac9 100644 (file)
@@ -673,7 +673,7 @@ magic_found:
        }
        if (uspi->s_bsize < 4096) {
                printk("ufs_read_super: block size %u is too small\n",
-                       uspi->s_fsize);
+                       uspi->s_bsize);
                goto failed;
        }
        if (uspi->s_bsize / uspi->s_fsize > 8) {