diff options
| -rw-r--r-- | lib/ccan/tally/tally.c | 3 | 
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));  }  | 
