From c239bd64dcca10bfe1ee9a373a13a76d486c6be0 Mon Sep 17 00:00:00 2001 From: Jean-Marc Valin Date: Mon, 21 Jun 2010 01:01:17 -0400 Subject: [PATCH] removing some warnings --- libcelt/mathops.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcelt/mathops.h b/libcelt/mathops.h index 75198daf..31778a13 100644 --- a/libcelt/mathops.h +++ b/libcelt/mathops.h @@ -380,7 +380,7 @@ static inline celt_word32 celt_rcp(celt_word32 x) #define celt_div(a,b) MULT32_32_Q31((celt_word32)(a),celt_rcp(b)) -static celt_word32 frac_div32(celt_word32 a, celt_word32 b) +static inline celt_word32 frac_div32(celt_word32 a, celt_word32 b) { celt_word16 rcp; celt_word32 result, rem;