Use long int format in calls to db_printf() where required.
This commit is contained in:
parent
d41c7fb2f8
commit
7d4a18b335
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: db_machdep.c,v 1.13 1999/04/12 20:38:18 pk Exp $ */
|
||||
/* $NetBSD: db_machdep.c,v 1.14 1999/10/05 12:34:32 tron Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1996 Mark Brinicombe
|
||||
|
@ -77,7 +77,7 @@ db_show_vnode_cmd(addr, have_addr, count, modif)
|
|||
db_printf("vp->v_flag = %ld\n", vp->v_flag);
|
||||
db_printf("vp->v_numoutput = %ld\n", vp->v_numoutput);
|
||||
|
||||
db_printf("type %s, usecount %d, writecount %d, refcount %ld,",
|
||||
db_printf("type %s, usecount %ld, writecount %ld, refcount %ld,",
|
||||
typename[vp->v_type], vp->v_usecount, vp->v_writecount,
|
||||
vp->v_holdcnt);
|
||||
buf[0] = '\0';
|
||||
|
|
Loading…
Reference in New Issue