diff options
author | Ryo Nakamura <upa@haeena.net> | 2022-11-18 20:33:50 +0900 |
---|---|---|
committer | Ryo Nakamura <upa@haeena.net> | 2022-11-18 20:33:50 +0900 |
commit | 71efeaa4ba1bc78c2da4a13287d8d835f991f9ff (patch) | |
tree | 1e7109cb7b4fb700dc1dd293227053bbfc199461 /src | |
parent | 9193911e6b6d1024481e532ad2a255d83e92f833 (diff) |
fix type of id for sftp_async_write
Diffstat (limited to 'src')
-rw-r--r-- | src/file.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -669,8 +669,8 @@ static int _chunk_copy_local_to_remote_async(struct chunk *c, int fd, char buf[XFER_BUF_SIZE]; int idx, ret; struct { - int id; - ssize_t len; + uint32_t id; + ssize_t len; } reqs[nr_ahead]; if (c->len == 0) |