Problem: formatting errors

Solution: run make clang-format-diff
This commit is contained in:
Luca Boccassi 2020-10-09 20:08:05 +01:00
parent f578b26790
commit 97b5f8560d

View File

@ -71,11 +71,11 @@ void zmq::thread_t::start (thread_fn *tfn_, void *arg_, const char *name_)
#endif #endif
#if defined _WIN32_WCE #if defined _WIN32_WCE
_descriptor = _descriptor = (HANDLE) CreateThread (NULL, stack, &::thread_routine, this,
(HANDLE) CreateThread (NULL, stack, &::thread_routine, this, 0, &_thread_id); 0, &_thread_id);
#else #else
_descriptor = (HANDLE) _beginthreadex (NULL, stack, &::thread_routine, this, 0, _descriptor = (HANDLE) _beginthreadex (NULL, stack, &::thread_routine, this,
&_thread_id); 0, &_thread_id);
#endif #endif
win_assert (_descriptor != NULL); win_assert (_descriptor != NULL);
_started = true; _started = true;