diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1999-12-31 18:27:41 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1999-12-31 18:27:41 +0000 |
commit | bea38bf9d654135f2d8625508e302827c48a35f8 (patch) | |
tree | 63d4a9b12f57f83c2ff9ec5aa2d01017761a3935 /sys/arch | |
parent | 1cee9aae25a8644805ec99f156619efcae04e928 (diff) |
fix order of uvm_fault() arguments in debug printf (;
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/hppa/hppa/trap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hppa/hppa/trap.c b/sys/arch/hppa/hppa/trap.c index 1902d257363..440f12d1e73 100644 --- a/sys/arch/hppa/hppa/trap.c +++ b/sys/arch/hppa/hppa/trap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: trap.c,v 1.13 1999/12/17 01:48:45 mickey Exp $ */ +/* $OpenBSD: trap.c,v 1.14 1999/12/31 18:27:40 mickey Exp $ */ /* * Copyright (c) 1998,1999 Michael Shalayeff @@ -342,7 +342,7 @@ if (kdb_trap (type, 0, frame)) return; #else panic("trap: uvm_fault(%p, %x, %d, %d): %d", - map, va, vftype, FALSE, ret); + map, va, 0, vftype, ret); #endif } } |