From 3a57547e33cb859e0989da2acd553ebdf84e48ef Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= <revol@free.fr>
Date: Fri, 31 Oct 2008 19:31:36 +0000
Subject: [PATCH] Fix build.

Originally committed as revision 15761 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 libavcodec/celp_math.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/celp_math.c b/libavcodec/celp_math.c
index df05917d20f..09111da819f 100644
--- a/libavcodec/celp_math.c
+++ b/libavcodec/celp_math.c
@@ -148,7 +148,7 @@ int ff_exp2(uint16_t power)
 {
     unsigned int result= exp2a[power>>10] + 0x10000;
 
-    assert(arg <= 0x7fff);
+    assert(power <= 0x7fff);
 
     result= (result<<3) + ((result*exp2b[(power>>5)&31])>>17);
     return result + ((result*(power&31)*89)>>22);
-- 
GitLab