Fix `elif` without condition in `fix16_trig.c`

This commit is contained in:
Martin Larralde 2020-03-15 02:22:25 +01:00 committed by GitHub
parent 20a2d64bb8
commit 950d51759b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ fix16_t fix16_tan(fix16_t inAngle)
{
#ifndef FIXMATH_NO_OVERFLOW
return fix16_sdiv(fix16_sin(inAngle), fix16_cos(inAngle));
#elif
#else
return fix16_div(fix16_sin(inAngle), fix16_cos(inAngle));
#endif
}