From 912f34351fac4f86df253047a21b909e5baff795 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Sat, 7 Dec 2013 11:28:01 -0500 Subject: [PATCH] examples/utils.c: do not add . at end of path --- examples/utils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } } -- 2.11.0