From owner-freebsd-current Mon Jan 6 8:25:35 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 D012737B401; Mon, 6 Jan 2003 08:25:34 -0800 (PST) Received: from espresso.q9media.com (espresso.q9media.com [65.39.129.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3996843EB2; Mon, 6 Jan 2003 08:25:34 -0800 (PST) (envelope-from mike@espresso.q9media.com) Received: by espresso.q9media.com (Postfix, from userid 1002) id 386579C10; Mon, 6 Jan 2003 11:14:37 -0500 (EST) Date: Mon, 6 Jan 2003 11:14:37 -0500 From: Mike Barcroft To: Robert Watson Cc: current@freebsd.org Subject: Re: alpha tinderbox failure Message-ID: <20030106111437.E24442@espresso.q9media.com> References: <200301061201.h06C1VOx027972@beast.freebsd.org> <20030106104536.C24442@espresso.q9media.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030106104536.C24442@espresso.q9media.com>; from mike@FreeBSD.org on Mon, Jan 06, 2003 at 10:45:36AM -0500 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 Mike Barcroft writes: > @@ -1077,8 +1078,9 @@ > > if (buflen != sizeof(temp)) { > if (buflen != sizeof(temp) - sizeof(temp.ml_auxsingle)) { > - printf("mac_lomac_associate_vnode_extattr: bad size %d\n", > - buflen); > + printf( > + "mac_lomac_associate_vnode_extattr: bad size %ju\n", > + (uintmax_t)buflen); > return (EPERM); > } > bzero(&temp.ml_auxsingle, sizeof(temp.ml_auxsingle)); Oops, I forgot we have %z in printf(9) now. That would obviously be better. Best regards, Mike Barcroft To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message