diff options
| author | Martin Larralde <martin.larralde@ens-paris-saclay.fr> | 2020-03-15 02:22:25 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-15 02:22:25 +0100 |
| commit | 950d51759b3746ed96cfad6cb989775dacc94949 (patch) | |
| tree | 0bf491f681f52cc63415a8f15e7b89e82d0e6a4a | |
| parent | 20a2d64bb8e526605a27feb3f734a13bd9f04496 (diff) | |
Fix `elif` without condition in `fix16_trig.c`
| -rw-r--r-- | libfixmath/fix16_trig.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libfixmath/fix16_trig.c b/libfixmath/fix16_trig.c index 791bb3e..09dd5d2 100644 --- a/libfixmath/fix16_trig.c +++ b/libfixmath/fix16_trig.c @@ -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
}
|
