Skip to content

Commit

Permalink
Corrected warning from issue #159
Browse files Browse the repository at this point in the history
  • Loading branch information
christophe0606 committed Mar 4, 2024
2 parents 5455648 + 8e27533 commit 7dc19e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/FastMathFunctions/arm_divide_q15.c
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,11 @@ arm_status arm_divide_q15(q15_t numerator,
{
if (sign)
{
*quotient = 0x8000;
*quotient = -32768;
}
else
{
*quotient = 0x7FFF;
*quotient = 32767;
}
return(ARM_MATH_NANINF);
}
Expand Down

0 comments on commit 7dc19e2

Please sign in to comment.