Commit bc66945a authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] nfs printk warning fix

From: Trond Myklebust <trond.myklebust@fys.uio.no>

fs/nfs/direct.c: In function `nfs_direct_IO':
fs/nfs/direct.c:458: warning: int format, different type arg (arg 2)
parent 96289450
......@@ -455,6 +455,6 @@ nfs_direct_IO(int rw, struct kiocb *iocb, const struct iovec *iov,
}
out:
dprintk("NFS: direct_IO result=%d\n", result);
dprintk("NFS: direct_IO result=%zd\n", result);
return result;
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment