X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/cc964a518c06de3032c511535b2456cd0f433558..f8ebdf9265e0189368d14497a212647f8cb185dd:/sender.c diff --git a/sender.c b/sender.c index 9dbee0e3..b0c24ddb 100644 --- a/sender.c +++ b/sender.c @@ -71,10 +71,10 @@ static struct sum_struct *receive_sums(int f) s->sums = NULL; - if (verbose > 3) - rprintf(FINFO, "count=%ld n=%ld rem=%ld\n", - (long) s->count, (long) s->blength, - (long) s->remainder); + if (verbose > 3) { + rprintf(FINFO, "count=%ld n=%u rem=%u\n", + (long)s->count, s->blength, s->remainder); + } if (s->count == 0) return(s); @@ -193,7 +193,7 @@ void send_files(struct file_list *flist, int f_out, int f_in) } if (write_batch) - write_batch_csum_info(&i, flist->count, s); + write_batch_csum_info(&i, s); if (!read_batch) { fd = do_open(fname, O_RDONLY, 0);