summaryrefslogtreecommitdiff
path: root/fs/cifs/file.c
diff options
context:
space:
mode:
authorSteve French <sfrench@us.ibm.com>2005-09-15 20:44:50 -0700
committerSteve French <sfrench@us.ibm.com>2005-09-15 20:44:50 -0700
commitab2f218f4fa2c36ecd39ac1406eec1e63cd430bd (patch)
tree80a361ff0417e1a9733fd49cbb133797854da264 /fs/cifs/file.c
parent9a899e76683639486846ce17dbaa0c2ec1ae5ab5 (diff)
[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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/cifs/file.c b/fs/cifs/file.c
index 5ecda554f913..4173f23a71d9 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;