summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2001-04-13 12:25:19 +0000
committerAndrew Tridgell <tridge@samba.org>2001-04-13 12:25:19 +0000
commit81c99202d3a60703d651edb8e967e300648cd8f1 (patch)
tree233f9563e44c404a705fe809a8860e3f36ea1878
parent3473b5b4d88befb4370a1b861e5c2f414cf4ffc4 (diff)
downloadrsync-81c99202d3a60703d651edb8e967e300648cd8f1.tar.gz
use %.0f instead of %ld
-rw-r--r--io.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/io.c b/io.c
index 1069a2e5..7aee3479 100644
--- a/io.c
+++ b/io.c
@@ -181,8 +181,8 @@ static int read_timeout(int fd, char *buf, int len)
if (eof_error) {
rprintf(FERROR,
"%s: connection to server unexpectedly closed"
- " (%ld bytes read so far)\n",
- RSYNC_NAME, stats.total_read);
+ " (%.0f bytes read so far)\n",
+ RSYNC_NAME, (double)stats.total_read);
}
exit_cleanup(RERR_STREAMIO);
}
@@ -381,7 +381,6 @@ static void writefd_unbuffered(int fd,char *buf,int len)
if (FD_ISSET(fd, &w_fds)) {
int ret, n = len-total;
-
ret = write(fd,buf+total,n);
if (ret == -1 && errno == EINTR) {