stefan pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=9d37fa2b8be5abcadaad14a7c4b3fe02afafc0ac
commit 9d37fa2b8be5abcadaad14a7c4b3fe02afafc0ac Author: Stefan Schmidt <[email protected]> Date: Tue Dec 6 17:03:59 2016 +0100 eina: fix same wrong indenting Brought up by running smatch. We have way to many of such things in tree though to fix them all without annoying a lot of people. I will just stop here. --- src/lib/eina/eina_counter.c | 2 +- src/lib/eina/eina_crc.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lib/eina/eina_counter.c b/src/lib/eina/eina_counter.c index 533d215..08c6583 100644 --- a/src/lib/eina/eina_counter.c +++ b/src/lib/eina/eina_counter.c @@ -148,7 +148,7 @@ eina_counter_free(Eina_Counter *counter) free(clk); } - free(counter); + free(counter); } EAPI void diff --git a/src/lib/eina/eina_crc.c b/src/lib/eina/eina_crc.c index e509dc8..69d0b23 100644 --- a/src/lib/eina/eina_crc.c +++ b/src/lib/eina/eina_crc.c @@ -312,9 +312,9 @@ _eina_crc(const char *data, int len, unsigned int seed, Eina_Bool start_stream) len -= 8; } - const char* currChar = (char*) curr; - while (len--) + const char* currChar = (char*) curr; + while (len--) crc = (crc >> 8) ^ table[0][(crc & 0xFF) ^ *currChar++]; - return ~crc; + return ~crc; } --
