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

Commit aeccbffd authored by Andreas Gampe's avatar Andreas Gampe Committed by Gerrit Code Review
Browse files

Merge "Avoid mixing declarations and statements in C89 source files"

parents 47deb15e f23c2bad
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;