Whitespace fix

This commit is contained in:
Pieter Hintjens 2014-02-03 11:03:56 +01:00
parent 40d7ca6a60
commit 45b593e7ed

View File

@ -40,7 +40,7 @@ extern "C"
void zmq::thread_t::start (thread_fn *tfn_, void *arg_) void zmq::thread_t::start (thread_fn *tfn_, void *arg_)
{ {
tfn = tfn_; tfn = tfn_;
arg =arg_; arg = arg_;
#if defined _WIN32_WCE #if defined _WIN32_WCE
descriptor = (HANDLE) CreateThread (NULL, 0, descriptor = (HANDLE) CreateThread (NULL, 0,
&::thread_routine, this, 0 , NULL); &::thread_routine, this, 0 , NULL);
@ -86,7 +86,7 @@ extern "C"
void zmq::thread_t::start (thread_fn *tfn_, void *arg_) void zmq::thread_t::start (thread_fn *tfn_, void *arg_)
{ {
tfn = tfn_; tfn = tfn_;
arg =arg_; arg = arg_;
int rc = pthread_create (&descriptor, NULL, thread_routine, this); int rc = pthread_create (&descriptor, NULL, thread_routine, this);
posix_assert (rc); posix_assert (rc);
} }