X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=ccan%2Ftally%2Ftally.c;h=1c471c1503ec51ff57177db1d71d0ffaa5019455;hb=7851faa626656f37ffd2b4b5e70139403c8d3235;hp=d67112c2cf6da49017904be9ec91b49f1f11ced5;hpb=237fc67d26def3f4458594b4aff7cb617f4522f7;p=ccan diff --git a/ccan/tally/tally.c b/ccan/tally/tally.c index d67112c2..1c471c15 100644 --- a/ccan/tally/tally.c +++ b/ccan/tally/tally.c @@ -52,8 +52,9 @@ struct tally *tally_new(unsigned buckets) static unsigned bucket_of(ssize_t min, unsigned step_bits, ssize_t val) { /* Don't over-shift. */ - if (step_bits == SIZET_BITS) + if (step_bits == SIZET_BITS) { return 0; + } assert(step_bits < SIZET_BITS); return (size_t)(val - min) >> step_bits; } @@ -62,8 +63,9 @@ static unsigned bucket_of(ssize_t min, unsigned step_bits, ssize_t val) static ssize_t bucket_min(ssize_t min, unsigned step_bits, unsigned b) { /* Don't over-shift. */ - if (step_bits == SIZET_BITS) + if (step_bits == SIZET_BITS) { return min; + } assert(step_bits < SIZET_BITS); return min + ((ssize_t)b << step_bits); }