]> git.ozlabs.org Git - ccan/commitdiff
tally: Adapt bucket_of to Samba coding conventions
authorVolker Lendecke <vl@samba.org>
Wed, 10 Aug 2011 17:45:14 +0000 (19:45 +0200)
committerRusty Russell <rusty@rustcorp.com.au>
Wed, 31 Aug 2011 01:09:10 +0000 (10:39 +0930)
(Imported from SAMBA commit 68d0843437b05dc8a36091e4a307bfd912cbc09f)

ccan/tally/tally.c

index d67112c2cf6da49017904be9ec91b49f1f11ced5..7eec70d39323429e259e08f04d195fd97472f57b 100644 (file)
@@ -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;
 }