diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2004-05-07 15:31:14 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2004-05-07 15:31:14 +0000 |
commit | f288dc768763b71e1fab221d4b68f87e15422e8d (patch) | |
tree | 120061c641c64858a3ec3a7ba537eeef805b1de5 /sys | |
parent | b261d1b50cbbf544ee5c5f393b3449bd2910aa61 (diff) |
Make #endif /* foo */ comments really match the #if condition.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/m88k/m88k/trap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/m88k/m88k/trap.c b/sys/arch/m88k/m88k/trap.c index 1bd4e5b6fc2..79fa4aa348e 100644 --- a/sys/arch/m88k/m88k/trap.c +++ b/sys/arch/m88k/m88k/trap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: trap.c,v 1.1 2004/04/29 14:33:27 miod Exp $ */ +/* $OpenBSD: trap.c,v 1.2 2004/05/07 15:31:13 miod Exp $ */ /* * Copyright (c) 1998 Steve Murphree, Jr. * Copyright (c) 1996 Nivas Madhur @@ -1151,7 +1151,7 @@ m88110_user_fault: userret(p, frame, sticks); } -#endif /* MVME197 */ +#endif /* M88110 */ __dead void error_fatal(struct trapframe *frame) @@ -1519,7 +1519,7 @@ m88110_syscall(register_t code, struct trapframe *tf) ktrsysret(p, code, error, rval[0]); #endif } -#endif /* MVME197 */ +#endif /* M88110 */ /* * Set up return-value registers as fork() libc stub expects, |