From: Paul Brossier Date: Sat, 7 Dec 2013 16:28:01 +0000 (-0500) Subject: examples/utils.c: do not add . at end of path X-Git-Tag: 0.4.0-beta1~42 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=912f34351fac4f86df253047a21b909e5baff795;p=aubio.git examples/utils.c: do not add . at end of path --- diff --git a/examples/utils.c b/examples/utils.c index a3a72778..09875315 100644 --- a/examples/utils.c +++ b/examples/utils.c @@ -81,7 +81,7 @@ examples_common_init (int argc, char **argv) debug ("Opening files ...\n"); this_source = new_aubio_source ((char_t*)source_uri, samplerate, hop_size); if (this_source == NULL) { - outmsg ("Could not open input file %s.\n", source_uri); + outmsg ("Could not open input file %s\n", source_uri); exit (1); } if (samplerate == 0) { @@ -90,7 +90,7 @@ examples_common_init (int argc, char **argv) if (sink_uri != NULL) { this_sink = new_aubio_sink ((char_t*)sink_uri, samplerate); if (this_sink == NULL) { - outmsg ("Could not open output file %s.\n", sink_uri); + outmsg ("Could not open output file %s\n", sink_uri); exit (1); } }