diff options
Diffstat (limited to 'sys/compat/svr4/imgact_svr4.c')
-rw-r--r-- | sys/compat/svr4/imgact_svr4.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/compat/svr4/imgact_svr4.c b/sys/compat/svr4/imgact_svr4.c index c3a0be6..5c2dc0d 100644 --- a/sys/compat/svr4/imgact_svr4.c +++ b/sys/compat/svr4/imgact_svr4.c @@ -229,9 +229,7 @@ exec_svr4_imgact(imgp) /* * Tell kern_execve.c about it, with a little help from the linker. - * Since `const' objects end up in the text segment, TEXT_SET is the - * correct directive to use. */ -const struct execsw svr4_execsw = { exec_svr4_imgact, "svr4 ELF" }; +const execsw svr4_execsw = { exec_svr4_imgact, "svr4 ELF" }; EXEC_SET(execsw_set, svr4_execsw); |