Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-4]: src/usr.bin/systat Pull up revision 1.5 (requested by he):



details:   https://anonhg.NetBSD.org/src/rev/dd1f18a71229
branches:  netbsd-1-4
changeset: 469497:dd1f18a71229
user:      he <he%NetBSD.org@localhost>
date:      Sun Sep 26 13:35:57 1999 +0000

description:
Pull up revision 1.5 (requested by he):
  LP64 and type sanity fixes, with visible effects of enabling echo
  on commands and correct cursor placement after update.

diffstat:

 usr.bin/systat/fetch.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (30 lines):

diff -r 557d7197d54d -r dd1f18a71229 usr.bin/systat/fetch.c
--- a/usr.bin/systat/fetch.c    Sun Sep 26 13:35:10 1999 +0000
+++ b/usr.bin/systat/fetch.c    Sun Sep 26 13:35:57 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: fetch.c,v 1.4 1998/07/12 05:59:00 mrg Exp $    */
+/*     $NetBSD: fetch.c,v 1.4.2.1 1999/09/26 13:35:57 he Exp $ */
 
 /*-
  * Copyright (c) 1980, 1992, 1993
@@ -38,17 +38,17 @@
 #if 0
 static char sccsid[] = "@(#)fetch.c    8.1 (Berkeley) 6/6/93";
 #endif
-__RCSID("$NetBSD: fetch.c,v 1.4 1998/07/12 05:59:00 mrg Exp $");
+__RCSID("$NetBSD: fetch.c,v 1.4.2.1 1999/09/26 13:35:57 he Exp $");
 #endif /* not lint */
 
 #include <sys/types.h>
 #include "systat.h"
 #include "extern.h"
 
-int
+ssize_t
 kvm_ckread(a, b, l)
        void *a, *b;
-       int l;
+       size_t l;
 {
        if (kvm_read(kd, (u_long)a, b, l) != l) {
                if (verbose)



Home | Main Index | Thread Index | Old Index