diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-10-20 06:54:12 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-10-20 06:54:12 +0000 |
commit | 795a421b2cc8124da3b281b36f927d2f24980e20 (patch) | |
tree | 103c87320fe7ef6bff16ecaafc35d0341ad20e99 /sys/arch/m88k | |
parent | fda0d4b2b7340e421cfe66cd5b52b6d3e9d077a1 (diff) |
add comma to fix offsets of trap type strings
ok miod@
Diffstat (limited to 'sys/arch/m88k')
-rw-r--r-- | sys/arch/m88k/m88k/trap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/m88k/m88k/trap.c b/sys/arch/m88k/m88k/trap.c index 66677e280ee..ece0183b97c 100644 --- a/sys/arch/m88k/m88k/trap.c +++ b/sys/arch/m88k/m88k/trap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: trap.c,v 1.135 2024/03/03 11:14:34 miod Exp $ */ +/* $OpenBSD: trap.c,v 1.136 2024/10/20 06:54:11 jsg Exp $ */ /* * Copyright (c) 2004, Miodrag Vallat. * Copyright (c) 1998 Steve Murphree, Jr. @@ -92,7 +92,7 @@ const char *trap_type[] = { "Data Access Exception", "Misaligned Access", "Unimplemented Opcode", - "Privilege Violation" + "Privilege Violation", "Bounds Check Violation", "Illegal Integer Divide", "Integer Overflow", |