]> git.ozlabs.org Git - ccan/commitdiff
tally: Adapt bucket_min to Samba coding conventions
authorVolker Lendecke <vl@samba.org>
Wed, 10 Aug 2011 17:45:24 +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 a2d1d0b51485f2d383d1d69fa3bd6b79b9e8d5aa)

ccan/tally/tally.c

index 7eec70d39323429e259e08f04d195fd97472f57b..1c471c1503ec51ff57177db1d71d0ffaa5019455 100644 (file)
@@ -63,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. */
 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;
                return min;
+       }
        assert(step_bits < SIZET_BITS);
        return min + ((ssize_t)b << step_bits);
 }
        assert(step_bits < SIZET_BITS);
        return min + ((ssize_t)b << step_bits);
 }