Fix build, use %d for int value formatting.

This commit is contained in:
Konstantin Belousov 2011-11-16 18:41:59 +00:00
parent e948693ed7
commit 1fb5311e00
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=227576

View File

@ -834,7 +834,7 @@ pfs_readdir(struct vop_readdir_args *va)
free(pfsent, M_IOV);
i++;
}
PFS_TRACE(("%zd bytes", i * PFS_DELEN));
PFS_TRACE(("%d bytes", i * PFS_DELEN));
PFS_RETURN (error);
}