diff options
author | bde <bde@FreeBSD.org> | 1998-08-23 10:16:26 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-08-23 10:16:26 +0000 |
commit | 1275a52cea911bb1052f091dacd6db2c27d851e2 (patch) | |
tree | 9dfebd0a7c3ffc9346fe8ceb2aec5e4b8fe358e6 /sys/kern | |
parent | bb396c130c6b394fb683ab88586fce4d9473b6f4 (diff) | |
download | FreeBSD-src-1275a52cea911bb1052f091dacd6db2c27d851e2.zip FreeBSD-src-1275a52cea911bb1052f091dacd6db2c27d851e2.tar.gz |
Fixed printf format errors.
Diffstat (limited to 'sys/kern')
-rw-r--r-- | sys/kern/subr_trap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/subr_trap.c b/sys/kern/subr_trap.c index 3325d32..c4935d0 100644 --- a/sys/kern/subr_trap.c +++ b/sys/kern/subr_trap.c @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * from: @(#)trap.c 7.4 (Berkeley) 5/13/91 - * $Id: trap.c,v 1.126 1998/04/15 17:45:07 bde Exp $ + * $Id: trap.c,v 1.127 1998/04/28 18:15:04 eivind Exp $ */ /* @@ -557,7 +557,7 @@ kernel_trap: uprintf("fatal process exception: %s", trap_msg[type]); if ((type == T_PAGEFLT) || (type == T_PROTFLT)) - uprintf(", fault VA = 0x%x", eva); + uprintf(", fault VA = 0x%lx", eva); uprintf("\n"); } #endif |