From 6fe1866957dffb70a79f33cf57b0579903ce15ad Mon Sep 17 00:00:00 2001 From: Alexander Viro Date: Thu, 2 May 2002 20:09:15 -0700 Subject: [PATCH] [PATCH] ufs/super.c D'oh. Missing commas... --- fs/ufs/super.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/fs/ufs/super.c b/fs/ufs/super.c index 9ed79dece381..cdf4ad6a84b2 100644 --- a/fs/ufs/super.c +++ b/fs/ufs/super.c @@ -657,12 +657,12 @@ magic_found: goto failed; } if (uspi->s_fsize < 512) { - printk("ufs_read_super: fragment size %u is too small\n" + printk("ufs_read_super: fragment size %u is too small\n", uspi->s_fsize); goto failed; } if (uspi->s_fsize > 4096) { - printk("ufs_read_super: fragment size %u is too large\n" + printk("ufs_read_super: fragment size %u is too large\n", uspi->s_fsize); goto failed; } @@ -672,12 +672,12 @@ magic_found: goto failed; } if (uspi->s_bsize < 4096) { - printk("ufs_read_super: block size %u is too small\n" + printk("ufs_read_super: block size %u is too small\n", uspi->s_fsize); goto failed; } if (uspi->s_bsize / uspi->s_fsize > 8) { - printk("ufs_read_super: too many fragments per block (%u)\n" + printk("ufs_read_super: too many fragments per block (%u)\n", uspi->s_bsize / uspi->s_fsize); goto failed; } -- 2.39.5