eina: fix same wrong indenting
authorStefan Schmidt <stefan@osg.samsung.com>
Tue, 6 Dec 2016 16:03:59 +0000 (17:03 +0100)
committerStefan Schmidt <stefan@osg.samsung.com>
Tue, 6 Dec 2016 16:16:24 +0000 (17:16 +0100)
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
src/lib/eina/eina_crc.c

index 533d215..08c6583 100644 (file)
@@ -148,7 +148,7 @@ eina_counter_free(Eina_Counter *counter)
         free(clk);
      }
 
-        free(counter);
+   free(counter);
 }
 
 EAPI void
index e509dc8..69d0b23 100644 (file)
@@ -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;
 }