summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstal <stal@zodiaclabs.org>2014-07-19 19:18:15 -0700
committerstal <stal@zodiaclabs.org>2014-07-19 19:18:15 -0700
commit4e85be6a68e83023a200088167336ead0f8f860d (patch)
tree30be8c9be147810304c6024fe1f313be7f7197e1
parent9c84b5401cdfb621b2e77751ad869b7fea786885 (diff)
declare calculate_sum_sq static inline
-rw-r--r--toxav/codec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toxav/codec.c b/toxav/codec.c
index ae24a976..4a12ffb2 100644
--- a/toxav/codec.c
+++ b/toxav/codec.c
@@ -383,7 +383,7 @@ void codec_terminate_session ( CodecState *cs )
383 free(cs); 383 free(cs);
384} 384}
385 385
386inline float calculate_sum_sq (int16_t *n, uint16_t k) 386static inline float calculate_sum_sq (int16_t *n, uint16_t k)
387{ 387{
388 float result = 0; 388 float result = 0;
389 uint16_t i = 0; 389 uint16_t i = 0;