From: Paul Brossier Date: Mon, 26 Nov 2018 15:59:12 +0000 (+0100) Subject: [dct] fix typo in error message X-Git-Tag: 0.4.9~153 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=5c3061ebeab00ca6f9413f766462f270c1290740;p=aubio.git [dct] fix typo in error message --- 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; }