ref: 5c3061ebeab00ca6f9413f766462f270c1290740
parent: 813ced81a06e01228d50abbe3e230848c337b711
author: Paul Brossier <piem@piem.org>
date: Mon Nov 26 11:59:12 EST 2018
[dct] fix typo in error message
--- a/src/spectral/dct.c
+++ b/src/spectral/dct.c
@@ -111,7 +111,7 @@
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 @@
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;
}