Date: Thu, 14 Oct 2004 02:38:15 +0300 From: Giorgos Keramidas <keramida@freebsd.org> To: simokawa@freebsd.org Cc: ia64@freebsd.org Subject: Re: [current tinderbox] failure on ia64/ia64 Message-ID: <20041013233815.GA17408@gothmog.gr> In-Reply-To: <20041013230417.268B17306E@freebsd-current.sentex.ca> References: <20041013230417.268B17306E@freebsd-current.sentex.ca>
next in thread | previous in thread | raw e-mail | index | archive | help
On 2004-10-13 19:04, FreeBSD Tinderbox <tinderbox@freebsd.org> wrote: > /tinderbox/CURRENT/ia64/ia64/src/sys/dev/dcons/dcons_os.c: In function `dcons_drv_init': > /tinderbox/CURRENT/ia64/ia64/src/sys/dev/dcons/dcons_os.c:496: warning: unused variable `addr' > /tinderbox/CURRENT/ia64/ia64/src/sys/dev/dcons/dcons_os.c:496: warning: unused variable `size' It looks like an #ifdef __i386__ is missing here... : Index: dcons_os.c : =================================================================== : RCS file: /home/ncvs/src/sys/dev/dcons/dcons_os.c,v : retrieving revision 1.1 : diff -u -r1.1 dcons_os.c : --- dcons_os.c 13 Oct 2004 05:38:42 -0000 1.1 : +++ dcons_os.c 13 Oct 2004 23:36:23 -0000 : @@ -493,7 +493,9 @@ : static int : dcons_drv_init(int stage) : { : +#ifdef __i386__ : int addr, size; : +#endif : : if (drv_init) : return(drv_init);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20041013233815.GA17408>