diff options
| author | Bruce Evans <bde@FreeBSD.org> | 1996-09-03 22:52:27 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 1996-09-03 22:52:27 +0000 |
| commit | e7fa2650cc7987d3a3a414123df7b78c132d301b (patch) | |
| tree | 1f969504300cf1571bbb0a4fd08be3d6e5655f68 /sys/modules | |
| parent | 3f6a052a89d5bba9088dd6f21378eb1d74108d49 (diff) | |
Notes
Diffstat (limited to 'sys/modules')
| -rw-r--r-- | sys/modules/coff/coff.c | 4 | ||||
| -rw-r--r-- | sys/modules/linux/linux.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/modules/coff/coff.c b/sys/modules/coff/coff.c index 8a7475749ec4..4c8b55a240f8 100644 --- a/sys/modules/coff/coff.c +++ b/sys/modules/coff/coff.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: coff.c,v 1.4 1995/11/13 07:18:21 bde Exp $ + * $Id: coff.c,v 1.5 1995/11/14 07:33:54 bde Exp $ */ #include <sys/param.h> @@ -38,7 +38,7 @@ extern const struct execsw coff_execsw; -MOD_EXEC(ibcs2_coff, -1, (struct execsw*)&coff_execsw); +MOD_EXEC(ibcs2_coff, -1, &coff_execsw); static int ibcs2_coff_load(struct lkm_table *lkmtp, int cmd) diff --git a/sys/modules/linux/linux.c b/sys/modules/linux/linux.c index a0f27ea5b912..dc0d522cc54d 100644 --- a/sys/modules/linux/linux.c +++ b/sys/modules/linux/linux.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: linux.c,v 1.5 1996/03/10 08:42:32 sos Exp $ + * $Id: linux.c,v 1.6 1996/03/10 22:43:37 peter Exp $ */ #include <sys/param.h> @@ -39,7 +39,7 @@ extern const struct execsw linux_execsw; -MOD_EXEC(linux, -1, (struct execsw*)&linux_execsw); +MOD_EXEC(linux, -1, &linux_execsw); extern Elf32_Interp_info linux_interp; |
