mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-13 18:55:10 +01:00
Problem: formatting errors
Solution: run make clang-format-diff
This commit is contained in:
parent
f578b26790
commit
97b5f8560d
@ -71,11 +71,11 @@ void zmq::thread_t::start (thread_fn *tfn_, void *arg_, const char *name_)
|
||||
#endif
|
||||
|
||||
#if defined _WIN32_WCE
|
||||
_descriptor =
|
||||
(HANDLE) CreateThread (NULL, stack, &::thread_routine, this, 0, &_thread_id);
|
||||
_descriptor = (HANDLE) CreateThread (NULL, stack, &::thread_routine, this,
|
||||
0, &_thread_id);
|
||||
#else
|
||||
_descriptor = (HANDLE) _beginthreadex (NULL, stack, &::thread_routine, this, 0,
|
||||
&_thread_id);
|
||||
_descriptor = (HANDLE) _beginthreadex (NULL, stack, &::thread_routine, this,
|
||||
0, &_thread_id);
|
||||
#endif
|
||||
win_assert (_descriptor != NULL);
|
||||
_started = true;
|
||||
|
Loading…
Reference in New Issue
Block a user