diff options
author | Steve French <sfrench@us.ibm.com> | 2005-09-15 20:44:50 -0700 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2005-09-15 20:44:50 -0700 |
commit | ab2f218f4fa2c36ecd39ac1406eec1e63cd430bd (patch) | |
tree | 80a361ff0417e1a9733fd49cbb133797854da264 /fs/cifs/file.c | |
parent | 9a899e76683639486846ce17dbaa0c2ec1ae5ab5 (diff) | |
download | op-kernel-dev-ab2f218f4fa2c36ecd39ac1406eec1e63cd430bd.zip op-kernel-dev-ab2f218f4fa2c36ecd39ac1406eec1e63cd430bd.tar.gz |
[CIFS] Fix compiler warnings
Fix some compiler warnings noticed on x64 by me and ppc64 by Shaggy
Signed-off-by: Steve French (sfrench@us.ibm.com)
Diffstat (limited to 'fs/cifs/file.c')
-rw-r--r-- | fs/cifs/file.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/cifs/file.c b/fs/cifs/file.c index 5ecda55..4173f23 100644 --- a/fs/cifs/file.c +++ b/fs/cifs/file.c @@ -791,8 +791,8 @@ static ssize_t cifs_write(struct file *file, const char *write_data, pTcon = cifs_sb->tcon; - cFYI(1,(" write %d bytes to offset %lld of %s", write_size, - *poffset, file->f_dentry->d_name.name)); /* BB removeme BB */ + cFYI(1,("write %zd bytes to offset %lld of %s", write_size, + *poffset, file->f_dentry->d_name.name)); if (file->private_data == NULL) return -EBADF; |