delete unused variable ret

This commit is contained in:
tangsha 2024-11-13 23:11:44 +08:00 committed by Steven Liu
parent 1912c86af6
commit 8a5b74f98b
1 changed files with 1 additions and 1 deletions

View File

@ -365,7 +365,7 @@ static av_always_inline av_const int avpriv_isfinite(double x)
#if !HAVE_HYPOT
static inline av_const double hypot(double x, double y)
{
double ret, temp;
double temp;
x = fabs(x);
y = fabs(y);