Source-Changes-HG archive

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

[src/netbsd-1-4]: src/lib/libkvm Pull up revision 1.13 (requested by he):



details:   https://anonhg.NetBSD.org/src/rev/147a4994688c
branches:  netbsd-1-4
changeset: 471192:147a4994688c
user:      he <he%NetBSD.org@localhost>
date:      Fri Oct 27 21:01:51 2000 +0000

description:
Pull up revision 1.13 (requested by he):
  Use %lx to format u_long parameter.

diffstat:

 lib/libkvm/kvm_ns32k.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 2c44ea7fcfea -r 147a4994688c lib/libkvm/kvm_ns32k.c
--- a/lib/libkvm/kvm_ns32k.c    Fri Oct 27 21:01:35 2000 +0000
+++ b/lib/libkvm/kvm_ns32k.c    Fri Oct 27 21:01:51 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: kvm_ns32k.c,v 1.9 1998/06/30 20:29:39 thorpej Exp $    */
+/*     $NetBSD: kvm_ns32k.c,v 1.9.2.1 2000/10/27 21:01:51 he Exp $     */
 
 /*-
  * Copyright (c) 1989, 1992, 1993
@@ -42,7 +42,7 @@
 #if 0
 static char sccsid[] = "@(#)kvm_hp300.c        8.1 (Berkeley) 6/4/93";
 #else
-__RCSID("$NetBSD: kvm_ns32k.c,v 1.9 1998/06/30 20:29:39 thorpej Exp $");
+__RCSID("$NetBSD: kvm_ns32k.c,v 1.9.2.1 2000/10/27 21:01:51 he Exp $");
 #endif
 #endif /* LIBC_SCCS and not lint */
 
@@ -150,7 +150,7 @@
        return (NBPG - offset);
 
 invalid:
-       _kvm_err(kd, 0, "invalid address (%x)", va);
+       _kvm_err(kd, 0, "invalid address (%lx)", va);
        return (0);
 }
 



Home | Main Index | Thread Index | Old Index