From: Randy Dunlap Date: Wed, 6 Jan 2010 22:26:27 +0000 (-0500) Subject: sunrpc: fix build-time warning X-Git-Tag: 2.1b_release~9748^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6c8530993e1fdf1d6af0403e796fe14d80b4b097;p=platform%2Fkernel%2Fkernel-mfld-blackbay.git sunrpc: fix build-time warning 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 Signed-off-by: Trond Myklebust --- diff --git a/net/sunrpc/auth_gss/auth_gss.c b/net/sunrpc/auth_gss/auth_gss.c index 66cb89c..f7a7f83 100644 --- a/net/sunrpc/auth_gss/auth_gss.c +++ b/net/sunrpc/auth_gss/auth_gss.c @@ -657,7 +657,7 @@ gss_pipe_downcall(struct file *filp, const char __user *src, size_t mlen) 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;