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

ccan/tally/tally.c

index 1c471c1503ec51ff57177db1d71d0ffaa5019455..4ece2364c308d86173fab8bed7fa548c0591dd5f 100644 (file)
@@ -73,8 +73,9 @@ static ssize_t bucket_min(ssize_t min, unsigned step_bits, unsigned b)
 /* Does shifting by this many bits truncate the number? */
 static bool shift_overflows(size_t num, unsigned bits)
 {
 /* Does shifting by this many bits truncate the number? */
 static bool shift_overflows(size_t num, unsigned bits)
 {
-       if (bits == 0)
+       if (bits == 0) {
                return false;
                return false;
+       }
 
        return ((num << bits) >> 1) != (num << (bits - 1));
 }
 
        return ((num << bits) >> 1) != (num << (bits - 1));
 }