Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/usr.sbin/pstat add a (long) cast to previous fix like the ot...
details: https://anonhg.NetBSD.org/src/rev/c67e67531718
branches: trunk
changeset: 477074:c67e67531718
user: mrg <mrg%NetBSD.org@localhost>
date: Sun Oct 10 00:15:27 1999 +0000
description:
add a (long) cast to previous fix like the other arguments.
diffstat:
usr.sbin/pstat/pstat.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r 8d5cfb5e1a92 -r c67e67531718 usr.sbin/pstat/pstat.c
--- a/usr.sbin/pstat/pstat.c Sun Oct 10 00:14:44 1999 +0000
+++ b/usr.sbin/pstat/pstat.c Sun Oct 10 00:15:27 1999 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: pstat.c,v 1.46 1999/10/01 23:11:24 soren Exp $ */
+/* $NetBSD: pstat.c,v 1.47 1999/10/10 00:15:27 mrg Exp $ */
/*-
* Copyright (c) 1980, 1991, 1993, 1994
@@ -43,7 +43,7 @@
#if 0
static char sccsid[] = "@(#)pstat.c 8.16 (Berkeley) 5/9/95";
#else
-__RCSID("$NetBSD: pstat.c,v 1.46 1999/10/01 23:11:24 soren Exp $");
+__RCSID("$NetBSD: pstat.c,v 1.47 1999/10/10 00:15:27 mrg Exp $");
#endif
#endif /* not lint */
@@ -401,7 +401,7 @@
*fp++ = '-';
*fp = '\0';
(void)printf("%8lx %s %5s %4ld %4ld %4d",
- (long)avnode, type, flags, vp->v_usecount, (long)vp->v_holdcnt,
+ (long)avnode, type, flags, (long)vp->v_usecount, (long)vp->v_holdcnt,
vp->v_tag);
}
Home |
Main Index |
Thread Index |
Old Index