aboutsummaryrefslogtreecommitdiffstats
path: root/fs/cifs/file.c
diff options
context:
space:
mode:
authorSteve French <sfrench@us.ibm.com>2005-09-15 23:44:50 -0400
committerSteve French <sfrench@us.ibm.com>2005-09-15 23:44:50 -0400
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 5ecda554f91..4173f23a71d 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,
791 791
792 pTcon = cifs_sb->tcon; 792 pTcon = cifs_sb->tcon;
793 793
794 cFYI(1,(" write %d bytes to offset %lld of %s", write_size, 794 cFYI(1,("write %zd bytes to offset %lld of %s", write_size,
795 *poffset, file->f_dentry->d_name.name)); /* BB removeme BB */ 795 *poffset, file->f_dentry->d_name.name));
796 796
797 if (file->private_data == NULL) 797 if (file->private_data == NULL)
798 return -EBADF; 798 return -EBADF;