mirror of
https://github.com/zeromq/libzmq.git
synced 2025-03-05 03:37:36 +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
|
#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;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user