Commit a062738a authored by Volker Lendecke's avatar Volker Lendecke Committed by Rusty Russell

tally: Adapt shift_overflows to Samba coding conventions

(Imported from SAMBA commit 4a3913fbb9399685785efa430765e0b5836ded60)
parent 7851faa6
......@@ -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));
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment