Fix warning. va_fsid is udev_t, which is int32_t. No need to use %lx.

This commit is contained in:
Peter Wemm 1999-07-01 13:32:54 +00:00
parent c47148499f
commit 8180de4a33
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=48394
2 changed files with 4 additions and 4 deletions

View File

@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* @(#)nfs_vnops.c 8.16 (Berkeley) 5/27/95
* $Id: nfs_vnops.c,v 1.133 1999/06/28 12:34:40 peter Exp $
* $Id: nfs_vnops.c,v 1.134 1999/06/30 02:53:51 julian Exp $
*/
@ -3017,7 +3017,7 @@ nfs_print(ap)
register struct vnode *vp = ap->a_vp;
register struct nfsnode *np = VTONFS(vp);
printf("tag VT_NFS, fileid %ld fsid 0x%lx",
printf("tag VT_NFS, fileid %ld fsid 0x%x",
np->n_vattr.va_fileid, np->n_vattr.va_fsid);
if (vp->v_type == VFIFO)
fifo_printinfo(vp);

View File

@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* @(#)nfs_vnops.c 8.16 (Berkeley) 5/27/95
* $Id: nfs_vnops.c,v 1.133 1999/06/28 12:34:40 peter Exp $
* $Id: nfs_vnops.c,v 1.134 1999/06/30 02:53:51 julian Exp $
*/
@ -3017,7 +3017,7 @@ nfs_print(ap)
register struct vnode *vp = ap->a_vp;
register struct nfsnode *np = VTONFS(vp);
printf("tag VT_NFS, fileid %ld fsid 0x%lx",
printf("tag VT_NFS, fileid %ld fsid 0x%x",
np->n_vattr.va_fileid, np->n_vattr.va_fsid);
if (vp->v_type == VFIFO)
fifo_printinfo(vp);