mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
NFS: (d)printks should use %zd for ssize_t arguments
(d)printks should use %zd for ssize_t arguments not %ld, otherwise they might get a warning. I see the following with MN10300. fs/nfs/objlayout/objlayout.c: In function 'objlayout_read_done': fs/nfs/objlayout/objlayout.c:294: warning: format '%ld' expects type 'long int', but argument 3 has type 'ssize_t' Signed-off-by: David Howells <dhowells@redhat.com> cc: Trond Myklebust <Trond.Myklebust@netapp.com> cc: linux-nfs@vger.kernel.org Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
This commit is contained in:
parent
d771e3a43e
commit
c7fd06228b
1 changed files with 1 additions and 1 deletions
|
@ -291,7 +291,7 @@ objlayout_read_done(struct objlayout_io_state *state, ssize_t status, bool sync)
|
||||||
struct nfs_read_data *rdata;
|
struct nfs_read_data *rdata;
|
||||||
|
|
||||||
state->status = status;
|
state->status = status;
|
||||||
dprintk("%s: Begin status=%ld eof=%d\n", __func__, status, eof);
|
dprintk("%s: Begin status=%zd eof=%d\n", __func__, status, eof);
|
||||||
rdata = state->rpcdata;
|
rdata = state->rpcdata;
|
||||||
rdata->task.tk_status = status;
|
rdata->task.tk_status = status;
|
||||||
if (status >= 0) {
|
if (status >= 0) {
|
||||||
|
|
Loading…
Reference in a new issue