From owner-freebsd-current@FreeBSD.ORG Wed Oct 13 23:38:21 2004 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 01F9B16A4D3; Wed, 13 Oct 2004 23:38:20 +0000 (GMT) Received: from kane.otenet.gr (kane.otenet.gr [195.170.0.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF6A543D55; Wed, 13 Oct 2004 23:38:19 +0000 (GMT) (envelope-from keramida@freebsd.org) Received: from gothmog.gr (patr530-b222.otenet.gr [212.205.244.230]) i9DNcFaR018220; Thu, 14 Oct 2004 02:38:16 +0300 Received: from gothmog.gr (gothmog [127.0.0.1]) by gothmog.gr (8.13.1/8.13.1) with ESMTP id i9DNcFwF018210; Thu, 14 Oct 2004 02:38:16 +0300 (EEST) (envelope-from keramida@freebsd.org) Received: (from giorgos@localhost) by gothmog.gr (8.13.1/8.13.1/Submit) id i9DNcFYk018209; Thu, 14 Oct 2004 02:38:15 +0300 (EEST) (envelope-from keramida@freebsd.org) Date: Thu, 14 Oct 2004 02:38:15 +0300 From: Giorgos Keramidas To: simokawa@freebsd.org Message-ID: <20041013233815.GA17408@gothmog.gr> References: <20041013230417.268B17306E@freebsd-current.sentex.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20041013230417.268B17306E@freebsd-current.sentex.ca> cc: current@freebsd.org cc: ia64@freebsd.org Subject: Re: [current tinderbox] failure on ia64/ia64 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Oct 2004 23:38:21 -0000 On 2004-10-13 19:04, FreeBSD Tinderbox 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);