Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752825Ab0ACLxE (ORCPT ); Sun, 3 Jan 2010 06:53:04 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752629Ab0ACLxD (ORCPT ); Sun, 3 Jan 2010 06:53:03 -0500 Received: from mx1.redhat.com ([209.132.183.28]:42844 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752388Ab0ACLxA (ORCPT ); Sun, 3 Jan 2010 06:53:00 -0500 Date: Sun, 3 Jan 2010 06:51:05 -0500 From: Jeff Layton To: Randy Dunlap Cc: Trond Myklebust , Stephen Rothwell , linux-kernel@vger.kernel.org, linux-nfs@vger.kernel.org Subject: Re: [PATCH v2] sunrpc: fix build-time warning Message-ID: <20100103065105.54bba3e8@tlielax.poochiereds.net> In-Reply-To: <20100101182514.cb1f49ef.randy.dunlap@oracle.com> References: <1262226195-27733-1-git-send-email-jlayton@redhat.com> <20091231091815.a1ea7e51.rdunlap@xenotime.net> <20091231205454.0f84f091@tupile.poochiereds.net> <20100101182514.cb1f49ef.randy.dunlap@oracle.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1189 Lines: 38 On Fri, 1 Jan 2010 18:25:14 -0800 Randy Dunlap wrote: > From: Randy Dunlap > > Fix auth_gss printk format warning: > > net/sunrpc/auth_gss/auth_gss.c:660: warning: format '%ld' expects type 'long int', but argument 3 has type 'ssize_t' > > Signed-off-by: Randy Dunlap Acked-by: Jeff Layton > --- > net/sunrpc/auth_gss/auth_gss.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > --- linux-next-20091229.orig/net/sunrpc/auth_gss/auth_gss.c > +++ linux-next-20091229/net/sunrpc/auth_gss/auth_gss.c > @@ -657,7 +657,7 @@ gss_pipe_downcall(struct file *filp, con > break; > default: > printk(KERN_CRIT "%s: bad return from " > - "gss_fill_context: %ld\n", __func__, err); > + "gss_fill_context: %zd\n", __func__, err); > BUG(); > } > goto err_release_msg; > --- -- Jeff Layton -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/