aboutsummaryrefslogtreecommitdiff
path: root/src/ito.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/ito.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ito.cpp b/src/ito.cpp
index dba1a87..0218ecc 100644
--- a/src/ito.cpp
+++ b/src/ito.cpp
@@ -32,9 +32,9 @@ bool Bu::Ito::stop()
32 32
33void *Bu::Ito::threadRunner( void *pThread ) 33void *Bu::Ito::threadRunner( void *pThread )
34{ 34{
35 void *pRet = ((Ito *)pThread)->run(); 35 ((Ito *)pThread)->run();
36 pthread_exit( pRet ); 36 pthread_exit( NULL );
37 return pRet; 37 return NULL;
38} 38}
39 39
40bool Bu::Ito::join() 40bool Bu::Ito::join()