diff options
Diffstat (limited to 'src/ito.cpp')
-rw-r--r-- | src/ito.cpp | 6 |
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 | ||
33 | void *Bu::Ito::threadRunner( void *pThread ) | 33 | void *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 | ||
40 | bool Bu::Ito::join() | 40 | bool Bu::Ito::join() |