Module Name:    src
Committed By:   tsutsui
Date:           Tue Jun 15 18:54:34 UTC 2021

Modified Files:
        src/sys/arch/luna68k/stand/boot: trap.c

Log Message:
constify


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/arch/luna68k/stand/boot/trap.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/luna68k/stand/boot/trap.c
diff -u src/sys/arch/luna68k/stand/boot/trap.c:1.1 src/sys/arch/luna68k/stand/boot/trap.c:1.2
--- src/sys/arch/luna68k/stand/boot/trap.c:1.1	Sat Jan  5 17:44:24 2013
+++ src/sys/arch/luna68k/stand/boot/trap.c	Tue Jun 15 18:54:34 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: trap.c,v 1.1 2013/01/05 17:44:24 tsutsui Exp $	*/
+/*	$NetBSD: trap.c,v 1.2 2021/06/15 18:54:34 tsutsui Exp $	*/
 
 /*
  * Copyright (c) 1992 OMRON Corporation.
@@ -77,7 +77,7 @@
 
 #define	USER	040		/* user-mode flag added to type */
 
-char	*trap_type[] = {
+const char *trap_type[] = {
 	"Bus error",
 	"Address error",
 	"Illegal instruction",

Reply via email to