From f280ebd4782996de802dd45fb6e624c43b8c402e Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Fri, 22 Jul 2016 21:29:43 +0200 Subject: [PATCH] examples/aubiotrack.c: fix is_beat / is_silence types --- examples/aubiotrack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/aubiotrack.c b/examples/aubiotrack.c index 2224d775..dcffbffe 100644 --- a/examples/aubiotrack.c +++ b/examples/aubiotrack.c @@ -28,8 +28,8 @@ aubio_tempo_t * tempo; aubio_wavetable_t *wavetable; fvec_t * tempo_out; -smpl_t is_beat = 0; -uint_t is_silence = 0.; +smpl_t is_beat = 0.; +uint_t is_silence = 0; void process_block(fvec_t * ibuf, fvec_t *obuf) { aubio_tempo_do (tempo, ibuf, tempo_out); -- 2.11.0