Fix warning:

1973: warning: int format, long int arg (arg 5)
This commit is contained in:
peter 2001-06-15 07:44:39 +00:00
parent 9419c1bc19
commit b38f2aba5e

View File

@ -1970,7 +1970,7 @@ sysctl_ffs_fsck(SYSCTL_HANDLER_ARGS)
mp->mnt_stat.f_mntonname,
filetype == IFDIR ? "directory" : "file",
(ino_t)cmd.value,
(ino_t)cmd.value + cmd.size - 1);
(ino_t)(cmd.value + cmd.size - 1));
}
#endif /* DEBUG */
tip.i_devvp = ump->um_devvp;