From 5c3061ebeab00ca6f9413f766462f270c1290740 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Mon, 26 Nov 2018 16:59:12 +0100 Subject: [PATCH] [dct] fix typo in error message --- src/spectral/dct.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/spectral/dct.c b/src/spectral/dct.c index bd6ba6c0..48f6cd2e 100644 --- a/src/spectral/dct.c +++ b/src/spectral/dct.c @@ -111,7 +111,7 @@ aubio_dct_t* new_aubio_dct (uint_t size) { s->del_dct = (del_aubio_dct_t)del_aubio_dct_fftw; return s; } else { - AUBIO_WRN("dct: unexcepected error while creating dct_fftw with size %d", + AUBIO_WRN("dct: unexpected error while creating dct_fftw with size %d\n", size); goto plain; } @@ -124,7 +124,7 @@ aubio_dct_t* new_aubio_dct (uint_t size) { s->del_dct = (del_aubio_dct_t)del_aubio_dct_ipp; return s; } else { - AUBIO_WRN("dct: unexcepected error while creating dct_ipp with size %d", + AUBIO_WRN("dct: unexpected error while creating dct_ipp with size %d\n", size); goto plain; } -- 2.11.0