Commit ea2e7996fc892e9becfed9145fdcefd59f697718

Authored by Eric Van Hensbergen
Committed by Eric Van Hensbergen
1 parent 0b15a3a528

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>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

... ... @@ -178,7 +178,7 @@
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))