summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2009-03-31 22:31:38 +0200
committerAndreas Baumann <abaumann@yahoo.com>2009-03-31 22:31:38 +0200
commitb05465136973cfd7031972ffa7e2571d509e4ccc (patch)
tree40a6b89c771e38cba21b8ef768da2553a15d45d5 /tests
parent5c1b85497e2d03d9b9056de0d7771d7677ad6c46 (diff)
downloadwolfbones-b05465136973cfd7031972ffa7e2571d509e4ccc.tar.gz
wolfbones-b05465136973cfd7031972ffa7e2571d509e4ccc.tar.bz2
small fix for Forte compiler with WOLF_THREAD_RETURN and double semi-colon
Diffstat (limited to 'tests')
-rw-r--r--tests/threads/test_create_join.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/threads/test_create_join.c b/tests/threads/test_create_join.c
index 1949975..6d9f66d 100644
--- a/tests/threads/test_create_join.c
+++ b/tests/threads/test_create_join.c
@@ -17,7 +17,7 @@ static WOLF_THREAD_RETURN_DECL thread_func( void *thread_data ) {
WOLF_UNUSED( thread_data );
- WOLF_THREAD_RETURN;
+ WOLF_THREAD_RETURN
}
int main( void ) {