summaryrefslogtreecommitdiff
path: root/lib/ccan/tally
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2011-08-10 19:45:40 +0200
committerVolker Lendecke <vl@samba.org>2011-08-10 19:56:10 +0200
commit4a3913fbb9399685785efa430765e0b5836ded60 (patch)
treec0b23f7b513f66f1cadba420928185be6afa4ff6 /lib/ccan/tally
parenta2d1d0b51485f2d383d1d69fa3bd6b79b9e8d5aa (diff)
downloadsamba-4a3913fbb9399685785efa430765e0b5836ded60.tar.gz
samba-4a3913fbb9399685785efa430765e0b5836ded60.tar.bz2
samba-4a3913fbb9399685785efa430765e0b5836ded60.zip
Adapt shift_overflows to Samba coding conventions
Diffstat (limited to 'lib/ccan/tally')
-rw-r--r--lib/ccan/tally/tally.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/ccan/tally/tally.c b/lib/ccan/tally/tally.c
index 1c471c1503..4ece2364c3 100644
--- a/lib/ccan/tally/tally.c
+++ b/lib/ccan/tally/tally.c
@@ -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)
{
- if (bits == 0)
+ if (bits == 0) {
return false;
+ }
return ((num << bits) >> 1) != (num << (bits - 1));
}