]> git.ipfire.org Git - thirdparty/rsync.git/commitdiff
The "len" to generate_and_send_sums() is supposed to be an OFF_T.
authorWayne Davison <wayned@samba.org>
Wed, 14 Jul 2004 16:40:08 +0000 (16:40 +0000)
committerWayne Davison <wayned@samba.org>
Wed, 14 Jul 2004 16:40:08 +0000 (16:40 +0000)
generator.c

index b8968925da55c02753f455d1029b49454273a46a..6eb65d2483c114e4b24d16d98366b61869cb5564 100644 (file)
@@ -205,7 +205,7 @@ static void sum_sizes_sqroot(struct sum_struct *sum, uint64 len)
  *
  * Generate approximately one checksum every block_len bytes.
  */
-static void generate_and_send_sums(struct map_struct *buf, size_t len, int f_out)
+static void generate_and_send_sums(struct map_struct *buf, OFF_T len, int f_out)
 {
        size_t i;
        struct sum_struct sum;