diff options
| author | Mattias Andrée <maandree@kth.se> | 2016-03-01 18:42:43 +0100 |
|---|---|---|
| committer | Mattias Andrée <maandree@kth.se> | 2016-03-01 18:42:43 +0100 |
| commit | d703af0b0afa6eafefe95b56b4073c3a16c46be3 (patch) | |
| tree | 631297d30c198e7636c5e03e2d02330b28863fbf /src/zlsb.c | |
| parent | Add zsetup, zunsetup, zinit, zfree, zswap, zsave, zload, zbits, and zlsb (diff) | |
| download | libzahl-d703af0b0afa6eafefe95b56b4073c3a16c46be3.tar.gz libzahl-d703af0b0afa6eafefe95b56b4073c3a16c46be3.tar.bz2 libzahl-d703af0b0afa6eafefe95b56b4073c3a16c46be3.tar.xz | |
Fix whitespace
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'src/zlsb.c')
| -rw-r--r-- | src/zlsb.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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; } |
