From: Paul Brossier Date: Sun, 12 Mar 2017 13:20:36 +0000 (+0100) Subject: tests/src/effects/test-pitchshift.c: cosmetic changes X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=4ac4ebc14cb7dbc7475b4942a79c5717b07c79eb;p=aubio.git tests/src/effects/test-pitchshift.c: cosmetic changes --- diff --git a/tests/src/effects/test-pitchshift.c b/tests/src/effects/test-pitchshift.c index 80e22d68..c1ab58bf 100644 --- a/tests/src/effects/test-pitchshift.c +++ b/tests/src/effects/test-pitchshift.c @@ -9,7 +9,8 @@ int main (int argc, char **argv) if (argc < 4) { err = 2; PRINT_ERR("not enough arguments\n"); - PRINT_MSG("usage: %s [mode] [hop_size] [samplerate]\n", argv[0]); + PRINT_MSG("usage: %s [mode] " + "[hop_size] [samplerate]\n", argv[0]); PRINT_MSG(" with a number of semi tones in the range [-24, 24]\n"); PRINT_MSG(" and [mode] in 'default', 'crispness:0', ..., 'crispness:6'\n"); return err; @@ -71,5 +72,6 @@ beach_source: del_fvec(vec); del_fvec(out); beach_fvec: + aubio_cleanup(); return err; }