src/spectral/phasevoc.c: fix error string
authorPaul Brossier <piem@piem.org>
Mon, 3 Oct 2016 09:49:28 +0000 (11:49 +0200)
committerPaul Brossier <piem@piem.org>
Mon, 3 Oct 2016 09:49:28 +0000 (11:49 +0200)
src/spectral/phasevoc.c

index e48e91a..bb4514e 100644 (file)
@@ -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;
   }