summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAngelos D. Keromytis <angelos@cvs.openbsd.org>2001-05-14 07:10:00 +0000
committerAngelos D. Keromytis <angelos@cvs.openbsd.org>2001-05-14 07:10:00 +0000
commit2344afc496db573b8431dcc3d4aea7f35beb508c (patch)
treec8efabf19a8318d21c5fc0259a5b7df5a5ed3d2d
parent3e08be3114b70f08321bed20034820e07fd59bca (diff)
long -> int64_t for tty statistics
-rw-r--r--usr.bin/vmstat/dkstats.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/vmstat/dkstats.h b/usr.bin/vmstat/dkstats.h
index 02f2a4d4a98..fedb64ce047 100644
--- a/usr.bin/vmstat/dkstats.h
+++ b/usr.bin/vmstat/dkstats.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: dkstats.h,v 1.5 2001/02/07 20:32:55 todd Exp $ */
+/* $OpenBSD: dkstats.h,v 1.6 2001/05/14 07:09:59 angelos Exp $ */
/* $NetBSD: dkstats.h,v 1.1 1996/05/10 23:19:28 thorpej Exp $ */
/*
@@ -44,8 +44,8 @@ struct _disk {
u_int64_t *dk_seek; /* # of seeks (currently unused). */
u_int64_t *dk_bytes; /* # of bytes transferred. */
struct timeval *dk_time; /* Time spent in disk i/o. */
- long tk_nin; /* TTY Chars in. */
- long tk_nout; /* TTY Chars out. */
+ int64_t tk_nin; /* TTY Chars in. */
+ int64_t tk_nout; /* TTY Chars out. */
long cp_time[CPUSTATES]; /* System timer ticks. */
};