diff options
| author | tsutsui <tsutsui@NetBSD.org> | 2005-06-02 16:54:52 +0000 |
|---|---|---|
| committer | tsutsui <tsutsui@NetBSD.org> | 2005-06-02 16:54:52 +0000 |
| commit | bce385b9f7c17e1e7d5266e0bc68603032bf985f (patch) | |
| tree | bb99b09938c4ebd13e56033b5cec777178ab4176 /sys/compat/linux/common/linux_exec.c | |
| parent | e29ae5bc6f0548a78fd8cd52240b31c31c6d5be7 (diff) | |
Add a const.
Diffstat (limited to 'sys/compat/linux/common/linux_exec.c')
| -rw-r--r-- | sys/compat/linux/common/linux_exec.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/compat/linux/common/linux_exec.c b/sys/compat/linux/common/linux_exec.c index 6df12761f78..8f5b8a10894 100644 --- a/sys/compat/linux/common/linux_exec.c +++ b/sys/compat/linux/common/linux_exec.c @@ -1,4 +1,4 @@ -/* $NetBSD: linux_exec.c,v 1.75 2005/05/20 12:48:27 fvdl Exp $ */ +/* $NetBSD: linux_exec.c,v 1.76 2005/06/02 16:54:52 tsutsui Exp $ */ /*- * Copyright (c) 1994, 1995, 1998, 2000 The NetBSD Foundation, Inc. @@ -38,7 +38,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: linux_exec.c,v 1.75 2005/05/20 12:48:27 fvdl Exp $"); +__KERNEL_RCSID(0, "$NetBSD: linux_exec.c,v 1.76 2005/06/02 16:54:52 tsutsui Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -121,7 +121,7 @@ const struct emul emul_linux = { "/emul/linux", #ifndef __HAVE_MINIMAL_EMUL 0, - (int*)native_to_linux_errno, + (const int *)native_to_linux_errno, LINUX_SYS_syscall, LINUX_SYS_NSYSENT, #endif |
