From 24d0792fa5f1970808dc90ef88799c98ebb045d0 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Mon, 17 Dec 2012 16:49:48 +0100 Subject: [PATCH] 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. --- osx_write.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.39.2