Change i_gen in UFS to an unsigned type.

Missed format specifier.

Reported by:	mdf
MFC after:	4 weeks
This commit is contained in:
Pedro F. Giffuni 2013-07-01 03:31:19 +00:00
parent 9e89077c65
commit 60f7df4c1b

View File

@ -934,7 +934,7 @@ ufs_extattr_get(struct vnode *vp, int attrnamespace, const char *name,
* is to coerce this to undefined, and let it get cleaned
* up by the next write or extattrctl clean.
*/
printf("ufs_extattr_get (%s): inode number inconsistency (%d, %jd)\n",
printf("ufs_extattr_get (%s): inode number inconsistency (%d, %ju)\n",
mp->mnt_stat.f_mntonname, ueh.ueh_i_gen, (uintmax_t)ip->i_gen);
error = ENOATTR;
goto vopunlock_exit;