Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0566949e authored by Andreas Gampe's avatar Andreas Gampe Committed by Android Git Automerger
Browse files

am ba553472: am aeccbffd: Merge "Avoid mixing declarations and statements in C89 source files"

* commit 'ba553472':
  Avoid mixing declarations and statements in C89 source files
parents 5fcd4d19 ba553472
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -245,10 +245,9 @@ Word16 iLog4(Word32 value)
Word32 rsqrt(Word32 value,     /*!< Operand to square root (0.0 ... 1) */
             Word32 accuracy)  /*!< Number of valid bits that will be calculated */
{
    UNUSED(accuracy);

    Word32 root = 0;
	Word32 scale;
    UNUSED(accuracy);

	if(value < 0)
		return 0;