src/io: improve error messages
authorPaul Brossier <piem@piem.org>
Sun, 10 Feb 2013 08:13:24 +0000 (03:13 -0500)
committerPaul Brossier <piem@piem.org>
Sun, 10 Feb 2013 08:13:24 +0000 (03:13 -0500)
src/io/sink_apple_audio.c
src/io/source.c

index 5ae19d1e96554b48c2f3eac7a13a5b6ec747472d..4cce3f4a75ceebb0514f9c71ffe2fc18329411dc 100644 (file)
@@ -77,7 +77,7 @@ aubio_sink_apple_audio_t * new_aubio_sink_apple_audio(char_t * uri, uint_t sampl
   err = ExtAudioFileCreateWithURL(fileURL, fileType, &clientFormat, NULL,
      overwrite ? kAudioFileFlags_EraseFile : 0, &s->audioFile);
   if (err) {
-    AUBIO_ERR("error when trying to access %s, in ExtAudioFileOpenURL, %d\n", s->path, (int)err);
+    AUBIO_ERR("error when trying to create %s, in ExtAudioFileCreateWithURL, %d\n", s->path, (int)err);
     goto beach;
   }
   if (createAubioBufferList(&s->bufferList, s->channels, s->max_frames * s->channels)) {
index b4da594bfa1b972f540bb5bede2cc682d2a9a650..aa91cbb6ebbc3d786ed68988b7496a28695b6ddf 100644 (file)
@@ -44,7 +44,7 @@ aubio_source_t * new_aubio_source(char_t * uri, uint_t samplerate, uint_t hop_si
   if (s->source) return s;
 #endif /* HAVE_SNDFILE */
 #endif /* __APPLE__ */
-  AUBIO_ERROR("failed creating aubio source with %s", uri);
+  AUBIO_ERROR("failed creating aubio source with %s\n", uri);
   AUBIO_FREE(s);
   return NULL;
 }