From mboxrd@z Thu Jan 1 00:00:00 1970 From: Vincent Hanquez Subject: Re: [PATCH] netfront: 64bit cleanup Date: Sat, 18 Jun 2005 12:24:47 +0200 Message-ID: <20050618102447.GA30277@snarc.org> References: <20050617224434.GA4491@us.ibm.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Content-Disposition: inline In-Reply-To: <20050617224434.GA4491@us.ibm.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: Jon Mason Cc: Xen-devel@lists.xensource.com List-Id: xen-devel@lists.xenproject.org On Fri, Jun 17, 2005 at 05:44:34PM -0500, Jon Mason wrote: > printk(KERN_INFO "Received packet needs %d bytes more " > - "headroom.\n", skb->tail - skb->end); > + "headroom.\n", (int)(skb->tail - skb->end)); this is not right here. the right fix is to modify %d to be %zd the rest looks good, applied. Thanks, -- Vincent Hanquez