]> Repos - portaudio/commitdiff
Ass semicolon to fix "label at end of compound statement" error
authorphilburk <philburk@0f58301d-fd10-0410-b4af-bbb618454e57>
Tue, 1 Mar 2011 00:49:52 +0000 (00:49 +0000)
committerphilburk <philburk@0f58301d-fd10-0410-b4af-bbb618454e57>
Tue, 1 Mar 2011 00:49:52 +0000 (00:49 +0000)
caused by pthread_cleanup_pop(1) macro.

src/hostapi/alsa/pa_linux_alsa.c

index 8482bc891099563f54d7e39ad072f69b240015d0..edbbc80f6c8ee98a21f483c38623bc384283bcb1 100644 (file)
@@ -4270,7 +4270,8 @@ static void *CallbackThreadFunc( void *userData )
         }
     }
 
-end:   
+end:
+    ; /* Hack to fix "label at end of compound statement" error caused by pthread_cleanup_pop(1) macro. */
     /* Match pthread_cleanup_push */
     pthread_cleanup_pop( 1 );