From 0749bbe2675bc8fd6fde3302a697f4637cd320f0 Mon Sep 17 00:00:00 2001 From: Peter Wemm Date: Mon, 10 May 1999 12:38:41 +0000 Subject: Ack! I deleted "struct", not "const".. Oh boy... Submitted by: jkh --- sys/compat/svr4/imgact_svr4.c | 2 +- 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); -- cgit v1.3