diff options
author | Alexander Yurchenko <grange@cvs.openbsd.org> | 2004-10-08 07:13:45 +0000 |
---|---|---|
committer | Alexander Yurchenko <grange@cvs.openbsd.org> | 2004-10-08 07:13:45 +0000 |
commit | bc97c634994234139c456353135d17d792bac474 (patch) | |
tree | cda211cf256df7b6aecdb15ad29dbbeb2b03d65f /sys | |
parent | 4968087569204b815b8c82edae25e7d2c17e79b2 (diff) |
trapdebug_enter() really takes 2 args, not 1.
ok pefo@ miod@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/mips64/include/trap.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mips64/include/trap.h b/sys/arch/mips64/include/trap.h index 65b02955390..b2a179fd52e 100644 --- a/sys/arch/mips64/include/trap.h +++ b/sys/arch/mips64/include/trap.h @@ -1,4 +1,4 @@ -/* $OpenBSD: trap.h,v 1.3 2004/08/10 20:28:13 deraadt Exp $ */ +/* $OpenBSD: trap.h,v 1.4 2004/10/08 07:13:44 grange Exp $ */ /* * Copyright (c) 1988 University of Utah. @@ -117,7 +117,7 @@ void trapDump __P((char *msg)); #else -#define trapdebug_enter(x) +#define trapdebug_enter(x, y) #endif #endif /* _LOCORE */ |