From 63d8906bac523102aaf32c4955264014413d13ab Mon Sep 17 00:00:00 2001 From: chs Date: Sun, 26 Nov 2000 15:13:50 +0000 Subject: [PATCH] const poisoning. --- sys/arch/arm32/arm32/syscall.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/arch/arm32/arm32/syscall.c b/sys/arch/arm32/arm32/syscall.c index 154ff47fcf00..104b6a918fd4 100644 --- a/sys/arch/arm32/arm32/syscall.c +++ b/sys/arch/arm32/arm32/syscall.c @@ -1,4 +1,4 @@ -/* $NetBSD: syscall.c,v 1.30 2000/06/29 08:52:58 mrg Exp $ */ +/* $NetBSD: syscall.c,v 1.31 2000/11/26 15:13:50 chs Exp $ */ /* * Copyright (c) 1994-1998 Mark Brinicombe. @@ -87,7 +87,7 @@ syscall(frame, code) int code; { caddr_t params; - struct sysent *callp; + const struct sysent *callp; struct proc *p; int error, opc; u_int argsize;