diff options
| author | Wayne Davison <wayned@samba.org> | 2003-07-04 15:11:44 +0000 |
|---|---|---|
| committer | Wayne Davison <wayned@samba.org> | 2003-07-04 15:11:44 +0000 |
| commit | 8801138b474c9f8c233eabcbfe49b8e1ae95958e (patch) | |
| tree | 2d96fb7489679cf2e8bde6e4f1746e1e0b5b886e /io.c | |
| parent | 2473391971b10ab9fdec66714d25d2ba357a3ac8 (diff) | |
| download | android_external_rsync-8801138b474c9f8c233eabcbfe49b8e1ae95958e.tar.gz android_external_rsync-8801138b474c9f8c233eabcbfe49b8e1ae95958e.tar.bz2 android_external_rsync-8801138b474c9f8c233eabcbfe49b8e1ae95958e.zip | |
Made rprintf() of size_t value portable.
Diffstat (limited to 'io.c')
| -rw-r--r-- | io.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -473,8 +473,8 @@ static int read_unbuffered(int fd, char *buf, size_t len) } if (remaining > sizeof(line) - 1) { - rprintf(FERROR, "multiplexing overflow %d\n\n", - remaining); + rprintf(FERROR, "multiplexing overflow %ld\n\n", + (long)remaining); exit_cleanup(RERR_STREAMIO); } |
