StdLib: GCC 6 build fixes

Resolve mainly 'misleading indentation', but also one 'defined but not used'
warning when building with GCC 6 (using GCC5 profile).

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Leif Lindholm <leif.lindholm@linaro.org>
Reviewed-by: Jaben Carsey <jaben.carsey@intel.com>
This commit is contained in:
Leif Lindholm
2017-04-26 22:49:16 +01:00
parent fcdb928a82
commit 65ed9d7ff5
4 changed files with 13 additions and 10 deletions

View File

@@ -526,15 +526,15 @@ dtoa
Bfree(b);
b = b1;
}
if (( j = b5 - m5 )!=0)
b = pow5mult(b, j);
if (( j = b5 - m5 )!=0)
b = pow5mult(b, j);
if (b == NULL)
return NULL;
}
else
b = pow5mult(b, b5);
if (b == NULL)
return NULL;
if (b == NULL)
return NULL;
}
S = i2b(1);
if (S == NULL)