Signed-off-by: Nicolas George <[email protected]>
---
 libavfilter/formats.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavfilter/formats.c b/libavfilter/formats.c
index f4fd43370b..f03061ec96 100644
--- a/libavfilter/formats.c
+++ b/libavfilter/formats.c
@@ -732,8 +732,8 @@ AVFilterFormats *ff_alpha_mode_straight(void)
 AVFilterFormats *ff_all_alpha_modes(void)
 {
     AVFilterFormats *ret = NULL;
-    for (int range = 0; range < AVALPHA_MODE_NB; range++) {
-        if (ff_add_format(&ret, range) < 0)
+    for (int am = 0; am < AVALPHA_MODE_NB; am++) {
+        if (ff_add_format(&ret, am) < 0)
             return NULL;
     }
 
-- 
2.53.0

_______________________________________________
ffmpeg-devel mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to