summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>1999-05-10 12:38:41 +0000
committerPeter Wemm <peter@FreeBSD.org>1999-05-10 12:38:41 +0000
commit0749bbe2675bc8fd6fde3302a697f4637cd320f0 (patch)
tree9b8ef422c801f22161406c76fdb1d551e0b10e93
parent149c3aa60a8796a137ede03bc8aa342eaa3bcdc4 (diff)
Notes
-rw-r--r--sys/compat/svr4/imgact_svr4.c2
-rw-r--r--sys/svr4/imgact_svr4.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/compat/svr4/imgact_svr4.c b/sys/compat/svr4/imgact_svr4.c
index 5c2dc0dfce3d..f8500de3a4e2 100644
--- a/sys/compat/svr4/imgact_svr4.c
+++ b/sys/compat/svr4/imgact_svr4.c
@@ -230,6 +230,6 @@ exec_svr4_imgact(imgp)
/*
* Tell kern_execve.c about it, with a little help from the linker.
*/
-const execsw svr4_execsw = { exec_svr4_imgact, "svr4 ELF" };
+struct execsw svr4_execsw = { exec_svr4_imgact, "svr4 ELF" };
EXEC_SET(execsw_set, svr4_execsw);
diff --git a/sys/svr4/imgact_svr4.c b/sys/svr4/imgact_svr4.c
index 5c2dc0dfce3d..f8500de3a4e2 100644
--- a/sys/svr4/imgact_svr4.c
+++ b/sys/svr4/imgact_svr4.c
@@ -230,6 +230,6 @@ exec_svr4_imgact(imgp)
/*
* Tell kern_execve.c about it, with a little help from the linker.
*/
-const execsw svr4_execsw = { exec_svr4_imgact, "svr4 ELF" };
+struct execsw svr4_execsw = { exec_svr4_imgact, "svr4 ELF" };
EXEC_SET(execsw_set, svr4_execsw);