Made the types used in the sum_buf and sum_struct structures consistent
[rsync/rsync.git] / sender.c
index 9dbee0e..b7ebbe1 100644 (file)
--- 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);