Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

9p: fix format warning

This patch fixes a format warning which appears on 64-bit builds.

Signed-off-by: Eric Van Hensbergen <ericvh@gmail.com>


authored by

Eric Van Hensbergen and committed by
Eric Van Hensbergen
ea2e7996 0b15a3a5

+1 -1
+1 -1
fs/9p/vfs_file.c
··· 178 178 int ret; 179 179 struct p9_fid *fid; 180 180 181 - P9_DPRINTK(P9_DEBUG_VFS, "count %d offset %lld\n", count, *offset); 181 + P9_DPRINTK(P9_DEBUG_VFS, "count %zu offset %lld\n", count, *offset); 182 182 fid = filp->private_data; 183 183 184 184 if (count > (fid->clnt->msize - P9_IOHDRSZ))