From d703af0b0afa6eafefe95b56b4073c3a16c46be3 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Tue, 1 Mar 2016 18:42:43 +0100 Subject: Fix whitespace MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- src/zlsb.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/zlsb.c') diff --git a/src/zlsb.c b/src/zlsb.c index 610b32f..2952a05 100644 --- a/src/zlsb.c +++ b/src/zlsb.c @@ -5,15 +5,15 @@ size_t zlsb(z_t a) { - size_t i = 0; - uint32_t x; + size_t i = 0; + uint32_t x; if (zzero(a)) { return SIZE_MAX; } for (;; i++) { x = a->chars[i]; if (x) { - x = ~x; + x = ~x; for (i *= BITS_PER_CHAR; x & 1; x >>= 1, i++); return i; } -- cgit v1.2.3-70-g09d2