From 8a5b74f98b333227cfa079085d0542d2e276bef9 Mon Sep 17 00:00:00 2001 From: tangsha Date: Wed, 13 Nov 2024 23:11:44 +0800 Subject: [PATCH] delete unused variable ret --- libavutil/libm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavutil/libm.h b/libavutil/libm.h index a819962391..185e486022 100644 --- a/libavutil/libm.h +++ b/libavutil/libm.h @@ -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);