aboutsummaryrefslogtreecommitdiffstats
path: root/src/audioOutputs/audioOutput_osx.c
diff options
context:
space:
mode:
authorWarren Dukes <warren.dukes@gmail.com>2005-03-23 00:52:26 +0000
committerWarren Dukes <warren.dukes@gmail.com>2005-03-23 00:52:26 +0000
commit754c29471f4c1dcff3324ae20da42c5e444eb298 (patch)
treebba3adbd10b911949e844f53e0cf25d7b5c0b375 /src/audioOutputs/audioOutput_osx.c
parent52cdd0baf61591d45a78b86d1dcd3337887ddca4 (diff)
downloadmpd-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.c6
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);
}