From fab070b2b32212efea82e6260b19957dcfcb5313 Mon Sep 17 00:00:00 2001 From: bde Date: Sun, 25 Aug 2002 02:39:07 +0000 Subject: Fixed printf format errors and style bugs in rev.1.92. This is the version that should have been committed in rev.1.93. --- sys/fs/msdosfs/msdosfs_vfsops.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'sys/fs/msdosfs') diff --git a/sys/fs/msdosfs/msdosfs_vfsops.c b/sys/fs/msdosfs/msdosfs_vfsops.c index cf68ec1..a136190 100644 --- a/sys/fs/msdosfs/msdosfs_vfsops.c +++ b/sys/fs/msdosfs/msdosfs_vfsops.c @@ -546,8 +546,9 @@ mountmsdosfs(devvp, mp, td, argp) * Check and validate (or perhaps invalidate?) the fsinfo structure? */ if (pmp->pm_fsinfo && pmp->pm_nxtfree > pmp->pm_maxcluster) { - printf("Next free cluster in FSInfo (%u) exceeds maxcluster (%u)\n", - pmp->pm_nxtfree, pmp->pm_maxcluster); + printf( + "Next free cluster in FSInfo (%lu) exceeds maxcluster (%lu)\n", + pmp->pm_nxtfree, pmp->pm_maxcluster); error = EINVAL; goto error_exit; } -- cgit v1.1