diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1998-03-01 14:12:43 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1998-03-01 14:12:43 +0000 |
commit | 5433bc2808285d942b7340349bb2a1f2673933f0 (patch) | |
tree | b876dac546fb4a525807ab105a97020c1993183e /sys/arch/m68k | |
parent | 84ffe6b991b3b972b80e705e3d70c6cdcf6dcc71 (diff) |
make int explicit
Diffstat (limited to 'sys/arch/m68k')
-rw-r--r-- | sys/arch/m68k/m68k/db_trace.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/m68k/m68k/db_trace.c b/sys/arch/m68k/m68k/db_trace.c index 75f1e50f49e..b2c8b191e5f 100644 --- a/sys/arch/m68k/m68k/db_trace.c +++ b/sys/arch/m68k/m68k/db_trace.c @@ -1,4 +1,4 @@ -/* $OpenBSD: db_trace.c,v 1.8 1997/03/21 00:36:40 niklas Exp $ */ +/* $OpenBSD: db_trace.c,v 1.9 1998/03/01 14:12:42 niklas Exp $ */ /* $NetBSD: db_trace.c,v 1.20 1997/02/05 05:10:25 scottr Exp $ */ /* @@ -268,8 +268,8 @@ findentry(sp) * an addq or addl or addw to sp just after we return to pop off our * arguments. Find that instruction and extract the value. */ - register instruc; - register val; + int instruc; + int val; db_addr_t addr, nextword; label_t db_jmpbuf; label_t *savejmp; |