X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/067669dac74abfa2acaaef6b1d078d861814e100..fb55e28d83ab11c17b8932019362a8926598efcd:/generator.c diff --git a/generator.c b/generator.c index f2e7c71d..48273f0c 100644 --- a/generator.c +++ b/generator.c @@ -155,7 +155,7 @@ static void sum_sizes_sqroot_baarda(struct sum_struct *sum, uint64 len) blength = 0; do { blength |= c; - if (len < (uint64)(blength * blength)) + if (len < (uint64)blength * blength) blength &= ~c; c >>= 1; } while (c >= 8); /* round to multiple of 8 */