projects
/
aubio.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
724922c
)
src/spectral/phasevoc.c: fix error string
author
Paul Brossier
<piem@piem.org>
Mon, 3 Oct 2016 09:49:28 +0000
(11:49 +0200)
committer
Paul Brossier
<piem@piem.org>
Mon, 3 Oct 2016 09:49:28 +0000
(11:49 +0200)
src/spectral/phasevoc.c
patch
|
blob
|
history
diff --git
a/src/spectral/phasevoc.c
b/src/spectral/phasevoc.c
index
e48e91a
..
bb4514e
100644
(file)
--- 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;
}