Ass semicolon to fix "label at end of compound statement" error

caused by pthread_cleanup_pop(1) macro.
This commit is contained in:
philburk 2011-03-01 00:49:52 +00:00
commit 1ca032a561

View 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 );