From owner-freebsd-current Wed Jan 1 7: 2:32 2003 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 E335A37B401 for ; Wed, 1 Jan 2003 07:02:30 -0800 (PST) Received: from espresso.q9media.com (espresso.q9media.com [65.39.129.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4559843EB2 for ; Wed, 1 Jan 2003 07:02:30 -0800 (PST) (envelope-from mike@espresso.q9media.com) Received: by espresso.q9media.com (Postfix, from userid 1002) id E6AD99C10; Wed, 1 Jan 2003 09:51:43 -0500 (EST) Date: Wed, 1 Jan 2003 09:51:43 -0500 From: Mike Barcroft To: Matthew Jacob Cc: current@freebsd.org Subject: Re: alpha tinderbox failure Message-ID: <20030101095143.P6833@espresso.q9media.com> References: <200301011142.h01BgRJq013203@beast.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200301011142.h01BgRJq013203@beast.freebsd.org>; from des@FreeBSD.org on Wed, Jan 01, 2003 at 03:42:27AM -0800 Organization: The FreeBSD Project Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Dag-Erling Smorgrav writes: > ===> vinum > "Makefile", line 4453: warning: duplicate script for target "geom_bsd.o" ignored > cc1: warnings being treated as errors > /h/des/src/sys/dev/isp/isp_pci.c: In function `tdma_mkfc': > /h/des/src/sys/dev/isp/isp_pci.c:1543: warning: unsigned int format, different type arg (arg 5) > /h/des/src/sys/dev/isp/isp_pci.c:1543: warning: int format, different type arg (arg 6) > /h/des/src/sys/dev/isp/isp_pci.c:1572: warning: unsigned int format, different type arg (arg 6) > /h/des/src/sys/dev/isp/isp_pci.c:1572: warning: unsigned int format, different type arg (arg 7) > *** Error code 1 Proposed fix: %%% Index: isp_pci.c =================================================================== RCS file: /work/repo/src/sys/dev/isp/isp_pci.c,v retrieving revision 1.89 diff -u -r1.89 isp_pci.c --- isp_pci.c 11 Oct 2002 17:28:01 -0000 1.89 +++ isp_pci.c 1 Jan 2003 14:56:25 -0000 @@ -1538,9 +1538,10 @@ cto->rsp.m0.ct_dataseg[cto->ct_seg_count].ds_count = dm_segs[segcnt].ds_len; cto->rsp.m0.ct_xfrlen += dm_segs[segcnt].ds_len; - isp_prt(isp, ISP_LOGTDEBUG1, "isp_send_ctio2: ent0[%d]0x%x:%d", - cto->ct_seg_count, dm_segs[segcnt].ds_addr, - dm_segs[segcnt].ds_len); + isp_prt(isp, ISP_LOGTDEBUG1, + "isp_send_ctio2: ent0[%d]0x%lx:%lu", + cto->ct_seg_count, (unsigned long)dm_segs[segcnt].ds_addr, + (unsigned long)dm_segs[segcnt].ds_len); } while (segcnt < nseg) { @@ -1567,9 +1568,10 @@ crq->req_dataseg[seg].ds_base = dm_segs[segcnt].ds_addr; crq->req_dataseg[seg].ds_count = dm_segs[segcnt].ds_len; isp_prt(isp, ISP_LOGTDEBUG1, - "isp_send_ctio2: ent%d[%d]%x:%u", + "isp_send_ctio2: ent%d[%d]%lx:%lu", cto->ct_header.rqs_entry_count-1, seg, - dm_segs[segcnt].ds_addr, dm_segs[segcnt].ds_len); + (unsigned long)dm_segs[segcnt].ds_addr, + (unsigned long)dm_segs[segcnt].ds_len); cto->rsp.m0.ct_xfrlen += dm_segs[segcnt].ds_len; cto->ct_seg_count++; } %%% Best regards, Mike Barcroft To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message