From: Andre Noll Date: Mon, 17 Dec 2012 15:49:48 +0000 (+0100) Subject: Fix compilation MacOS. X-Git-Tag: v0.4.12~3 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=24d0792fa5f1970808dc90ef88799c98ebb045d0 Fix compilation MacOS. The resolution of the conflict in commit 83ab4b5d introduced the following error: osx_write.c:329:9: error: use of undeclared label 'remove_btrn' goto remove_btrn; ^ Fix is trivial. --- diff --git a/osx_write.c b/osx_write.c index b057b9c0..bd829f00 100644 --- a/osx_write.c +++ b/osx_write.c @@ -326,7 +326,7 @@ static void osx_write_post_select(__a_unused struct sched *s, struct task *t) AudioUnitUninitialize(powd->audio_unit); CloseComponent(powd->audio_unit); btr_remove_node(&powd->callback_btrn); - goto remove_btrn; + goto fail; } } mutex_lock(powd->mutex);