Ack! I deleted "struct", not "const".. Oh boy...

Submitted by:	jkh
This commit is contained in:
Peter Wemm 1999-05-10 12:38:41 +00:00
parent 149c3aa60a
commit 0749bbe267
2 changed files with 2 additions and 2 deletions

View File

@ -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);

View File

@ -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);