@@ -22,15 +22,15 @@ typedef CRITICAL_SECTION of_mutex_t; typedef DWORD of_tlskey_t; #endif #ifndef _WIN32 -#define of_thread_is_current(t) pthread_equal(t, pthread_self()) -#define of_thread_current() pthread_self() +# define of_thread_is_current(t) pthread_equal(t, pthread_self()) +# define of_thread_current() pthread_self() #else -#define of_thread_is_current(t) (t == GetCurrentThread()) -#define of_thread_current() GetCurrentThread() +# define of_thread_is_current(t) (t == GetCurrentThread()) +# define of_thread_current() GetCurrentThread() #endif static OF_INLINE BOOL of_thread_new(of_thread_t *thread, id (*main)(id), id data) {