From: Eric Van Hensbergen Date: Wed, 22 Oct 2008 23:48:45 +0000 (-0500) Subject: 9p: fix format warning X-Git-Tag: v2.6.28-rc1~30^2~2 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=ea2e7996fc892e9becfed9145fdcefd59f697718;p=linux-2.6-omap-h63xx.git 9p: fix format warning This patch fixes a format warning which appears on 64-bit builds. Signed-off-by: Eric Van Hensbergen --- diff --git a/fs/9p/vfs_file.c b/fs/9p/vfs_file.c index 041c5269228..68bf2af6c38 100644 --- a/fs/9p/vfs_file.c +++ b/fs/9p/vfs_file.c @@ -178,7 +178,7 @@ v9fs_file_read(struct file *filp, char __user *udata, size_t count, int ret; struct p9_fid *fid; - P9_DPRINTK(P9_DEBUG_VFS, "count %d offset %lld\n", count, *offset); + P9_DPRINTK(P9_DEBUG_VFS, "count %zu offset %lld\n", count, *offset); fid = filp->private_data; if (count > (fid->clnt->msize - P9_IOHDRSZ))