summaryrefslogtreecommitdiffstats
path: root/sys/fs/msdosfs
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>2002-08-25 02:39:07 +0000
committerbde <bde@FreeBSD.org>2002-08-25 02:39:07 +0000
commitfab070b2b32212efea82e6260b19957dcfcb5313 (patch)
tree66c853c96bd773025718f6f2dbc4c6926a4e71e5 /sys/fs/msdosfs
parent5e4e5503cfeeabf1d491b48691def086de9bf9cc (diff)
downloadFreeBSD-src-fab070b2b32212efea82e6260b19957dcfcb5313.zip
FreeBSD-src-fab070b2b32212efea82e6260b19957dcfcb5313.tar.gz
Fixed printf format errors and style bugs in rev.1.92. This is the version
that should have been committed in rev.1.93.
Diffstat (limited to 'sys/fs/msdosfs')
-rw-r--r--sys/fs/msdosfs/msdosfs_vfsops.c5
1 files changed, 3 insertions, 2 deletions
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;
}
OpenPOWER on IntegriCloud