diff options
author | peter <peter@FreeBSD.org> | 1999-04-17 07:55:15 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1999-04-17 07:55:15 +0000 |
commit | ea1e34d0c957e00ae335d21b817cb316bfafa43e (patch) | |
tree | b8658c77e19f709b6cadcb4240bf5bd9fb7ed5fa /sys/svr4 | |
parent | eeaec3c191475424bae280c86a28f55d646d9e19 (diff) | |
download | FreeBSD-src-ea1e34d0c957e00ae335d21b817cb316bfafa43e.zip FreeBSD-src-ea1e34d0c957e00ae335d21b817cb316bfafa43e.tar.gz |
Image activators use EXEC_SET(), not TEXT_SET(). (The first is a macro
wrapper for DECLARE_MODULE(), the second is a linker set declaration)
Diffstat (limited to 'sys/svr4')
-rw-r--r-- | sys/svr4/imgact_svr4.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/svr4/imgact_svr4.c b/sys/svr4/imgact_svr4.c index 1324805..42ac305 100644 --- a/sys/svr4/imgact_svr4.c +++ b/sys/svr4/imgact_svr4.c @@ -233,5 +233,5 @@ exec_svr4_imgact(imgp) * correct directive to use. Do not staticize; used by Linux LKM. */ const struct execsw svr4_execsw = { exec_svr4_imgact, "svr4 ELF" }; -TEXT_SET(execsw_set, svr4_execsw); +EXEC_SET(execsw_set, svr4_execsw); |