mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-11 17:04:19 +01:00
Fix warning. va_fsid is udev_t, which is int32_t. No need to use %lx.
This commit is contained in:
parent
c47148499f
commit
8180de4a33
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=48394
@ -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);
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user