From: Paul Brossier Date: Mon, 3 Oct 2016 09:49:28 +0000 (+0200) Subject: src/spectral/phasevoc.c: fix error string X-Git-Tag: 0.4.4~176 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=82e0f865fbe89058ce97f2f4edc792a65b1bbee0;p=aubio.git src/spectral/phasevoc.c: fix error string --- diff --git a/src/spectral/phasevoc.c b/src/spectral/phasevoc.c index e48e91ac..bb4514e3 100644 --- a/src/spectral/phasevoc.c +++ b/src/spectral/phasevoc.c @@ -88,7 +88,7 @@ aubio_pvoc_t * new_aubio_pvoc (uint_t win_s, uint_t hop_s) { AUBIO_ERR("pvoc: got buffer_size %d, but can not be < 2\n", win_s); goto beach; } else if (win_s < hop_s) { - AUBIO_ERR("pvoc: hop size (%d) is larger than win size (%d)\n", win_s, hop_s); + AUBIO_ERR("pvoc: hop size (%d) is larger than win size (%d)\n", hop_s, win_s); goto beach; }