diff options
| -rw-r--r-- | sys/fs/msdosfs/msdosfs_vfsops.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/fs/msdosfs/msdosfs_vfsops.c b/sys/fs/msdosfs/msdosfs_vfsops.c index cf68ec1e42c9..a136190d93bd 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; } |
