Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/alpha/alpha constify



details:   https://anonhg.NetBSD.org/src/rev/96712cae8bf7
branches:  trunk
changeset: 499540:96712cae8bf7
user:      itojun <itojun%NetBSD.org@localhost>
date:      Wed Nov 22 03:54:01 2000 +0000

description:
constify

diffstat:

 sys/arch/alpha/alpha/trap.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 4e19ac188f08 -r 96712cae8bf7 sys/arch/alpha/alpha/trap.c
--- a/sys/arch/alpha/alpha/trap.c       Wed Nov 22 03:48:33 2000 +0000
+++ b/sys/arch/alpha/alpha/trap.c       Wed Nov 22 03:54:01 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: trap.c,v 1.61 2000/11/20 15:33:39 thorpej Exp $ */
+/* $NetBSD: trap.c,v 1.62 2000/11/22 03:54:01 itojun Exp $ */
 
 /*-
  * Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -102,7 +102,7 @@
 
 #include <sys/cdefs.h>                 /* RCS ID & Copyright macro defns */
 
-__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.61 2000/11/20 15:33:39 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.62 2000/11/22 03:54:01 itojun Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -639,7 +639,7 @@
        u_int64_t code;
        struct trapframe *framep;
 {
-       struct sysent *callp;
+       const struct sysent *callp;
        struct proc *p;
        int error, numsys;
        u_int64_t opc;



Home | Main Index | Thread Index | Old Index