diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2005-03-23 00:52:26 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2005-03-23 00:52:26 +0000 |
commit | 754c29471f4c1dcff3324ae20da42c5e444eb298 (patch) | |
tree | bba3adbd10b911949e844f53e0cf25d7b5c0b375 /src/audioOutputs/audioOutput_osx.c | |
parent | 52cdd0baf61591d45a78b86d1dcd3337887ddca4 (diff) | |
download | mpd-754c29471f4c1dcff3324ae20da42c5e444eb298.tar.gz mpd-754c29471f4c1dcff3324ae20da42c5e444eb298.tar.xz mpd-754c29471f4c1dcff3324ae20da42c5e444eb298.zip |
fix compilation error in os x plugin
git-svn-id: https://svn.musicpd.org/mpd/trunk@3115 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/audioOutputs/audioOutput_osx.c')
-rw-r--r-- | src/audioOutputs/audioOutput_osx.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/audioOutputs/audioOutput_osx.c b/src/audioOutputs/audioOutput_osx.c index da18b0676..eef40e788 100644 --- a/src/audioOutputs/audioOutput_osx.c +++ b/src/audioOutputs/audioOutput_osx.c @@ -93,9 +93,9 @@ static int osx_initDriver(AudioOutput * audioOutput, ConfigParam * param) { static void freeOsxData(OsxData * od) { if(od->buffer) free(od->buffer); - pthread_mutex_destroy(&ret->mutex); - pthread_cond_destroy(&ret->conditionFull); - pthread_cond_destroy(&ret->conditionEmpty); + pthread_mutex_destroy(&od->mutex); + pthread_cond_destroy(&od->conditionFull); + pthread_cond_destroy(&od->conditionEmpty); free(od); } |