diff options
| author | Peter Wemm <peter@FreeBSD.org> | 1999-05-10 12:38:41 +0000 |
|---|---|---|
| committer | Peter Wemm <peter@FreeBSD.org> | 1999-05-10 12:38:41 +0000 |
| commit | 0749bbe2675bc8fd6fde3302a697f4637cd320f0 (patch) | |
| tree | 9b8ef422c801f22161406c76fdb1d551e0b10e93 | |
| parent | 149c3aa60a8796a137ede03bc8aa342eaa3bcdc4 (diff) | |
Notes
| -rw-r--r-- | sys/compat/svr4/imgact_svr4.c | 2 | ||||
| -rw-r--r-- | sys/svr4/imgact_svr4.c | 2 |
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); |
