summaryrefslogtreecommitdiff
path: root/send-stream.c
diff options
context:
space:
mode:
Diffstat (limited to 'send-stream.c')
-rw-r--r--send-stream.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/send-stream.c b/send-stream.c
index 5d36530d..7b64dc22 100644
--- a/send-stream.c
+++ b/send-stream.c
@@ -37,10 +37,10 @@ struct btrfs_send_stream {
void *user;
};
-static int read_buf(struct btrfs_send_stream *sctx, void *buf, int len)
+static int read_buf(struct btrfs_send_stream *sctx, void *buf, size_t len)
{
int ret;
- int pos = 0;
+ size_t pos = 0;
while (pos < len) {
ret = read(sctx->fd, (char*)buf + pos, len - pos);