diff --git a/libavutil/integer.c b/libavutil/integer.c
index 7e394b342e6cc21dd793651c9b3e2a2d54650a62..38620b2f2def465e6f104652bda2a4be4291c632 100644
--- a/libavutil/integer.c
+++ b/libavutil/integer.c
@@ -111,8 +111,8 @@ AVInteger av_mod_i(AVInteger *quot, AVInteger a, AVInteger b){
     AVInteger quot_temp;
     if(!quot) quot = &quot_temp;
 
-    av_assert2((int16_t)a[AV_INTEGER_SIZE-1] >= 0 && (int16_t)b[AV_INTEGER_SIZE-1] >= 0);
-    av_assert2(av_log2(b)>=0);
+    av_assert2((int16_t)a.v[AV_INTEGER_SIZE-1] >= 0 && (int16_t)b.v[AV_INTEGER_SIZE-1] >= 0);
+    av_assert2(av_log2_i(b)>=0);
 
     if(i > 0)
         b= av_shr_i(b, -i);