Changeset 93e3463 for src


Ignore:
Timestamp:
Mar 18, 2013, 4:47:13 PM (11 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
Children:
df53936
Parents:
396103a
Message:

src/io/sink_apple_audio.c: print an error if del_aubio_sink_apple_audio failed

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/io/sink_apple_audio.c

    r396103a r93e3463  
    123123void del_aubio_sink_apple_audio(aubio_sink_apple_audio_t * s) {
    124124  OSStatus err = noErr;
    125   if (!s || !s->audioFile) { return; }
     125  if (!s || !s->audioFile) {
     126    AUBIO_ERR("failed erasing sink_apple_audio\n");
     127    return;
     128  }
    126129  err = ExtAudioFileDispose(s->audioFile);
    127130  if (err) AUBIO_ERROR("error in ExtAudioFileDispose, %d\n", (int)err);
Note: See TracChangeset for help on using the changeset viewer.