[PATCH] cifs: fix compiler warning about incompatible pointer type (try #2)

From: Pavel Shilovsky
Date: Mon Jan 31 2011 - 06:41:39 EST


fs/cifs/file.c: In function âcifs_iovec_writeâ:
fs/cifs/file.c:1740:9: warning: passing argument 6 of âCIFSSMBWrite2â from incompatible pointer type
fs/cifs/cifsproto.h:343:12: note: expected âunsigned int *â but argument is of type âsize_t *â

Signed-off-by: Suresh Jayaraman <sjayaraman@xxxxxxx>
Signed-off-by: Pavel Shilovsky <piastry@xxxxxxxxxxx>
---
fs/cifs/file.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/fs/cifs/file.c b/fs/cifs/file.c
index 0de17c1..4940bac 100644
--- a/fs/cifs/file.c
+++ b/fs/cifs/file.c
@@ -1667,9 +1667,9 @@ static ssize_t
cifs_iovec_write(struct file *file, const struct iovec *iov,
unsigned long nr_segs, loff_t *poffset)
{
- size_t total_written = 0, written = 0;
- unsigned long num_pages, npages;
- size_t copied, len, cur_len, i;
+ unsigned int written = 0;
+ unsigned long num_pages, npages, i;
+ size_t copied, len, cur_len, total_written = 0;
struct kvec *to_send;
struct page **pages;
struct iov_iter it;
--
1.7.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/