Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 18 May 1997 23:06:05 +0200 (CEST)
From:      S Sigala <ssigala@globalnet.it>
To:        pseudo-device   bpfilter <jbowie@bsdnet.org>
Cc:        freebsd-hackers@FreeBSD.ORG
Subject:   Re: NEW SCREENSAVER: "the daemon is jumpin' around"
Message-ID:  <Pine.BSF.3.96.970518230431.175A-100000@lattice.milk.it>
In-Reply-To: <Pine.BSF.3.96.970518161636.3826A-100000@www.eliteness.org>

next in thread | previous in thread | raw e-mail | index | archive | help
On Sun, 18 May 1997, pseudo-device   bpfilter wrote:
>
> Warning: Object directory not changed from original
> /usr/src/lkm/syscons/daemon
> cc -O -DLKM -I/usr/src/lkm/syscons/daemon/..
> -I/usr/src/lkm/syscons/daemon/../../../sys -I.  -DKERNEL
> -DACTUALLY_LKM_NOT_KERNEL -I/usr/src/lkm/syscons/daemon/../../sys
> -Wreturn-type -Wcomment -Wredundant-decls -Wimplicit  -Wnested-externs
> -Wstrict-prototypes -Wmissing-prototypes  -Wpointer-arith -c
> daemon_saver.c
> daemon_saver.c:212: macro `DISPATCH' used with only 6 args
> *** Error code 1
> 
> Stop.
> # 
> 
> Any ideas?

Seem like i am not so -current... anyway this should fix the
problem:

--- daemon_saver.c~	Sun May 18 15:19:41 1997
+++ daemon_saver.c	Sun May 18 23:03:32 1997
@@ -208,6 +208,6 @@
 int
 daemon_saver_mod(struct lkm_table *lkmtp, int cmd, int ver)
 {
-	DISPATCH(lkmtp, cmd, ver, daemon_saver_load, daemon_saver_unload,
-		 lkm_nullcmd);
+	MOD_DISPATCH(daemon_saver, lkmtp, cmd, ver,
+		daemon_saver_load, daemon_saver_unload, lkm_nullcmd);
 }


Regards,
	-sandro




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.BSF.3.96.970518230431.175A-100000>