Commit 45b593e7 authored by Pieter Hintjens's avatar Pieter Hintjens

Whitespace fix

parent 40d7ca6a
...@@ -40,7 +40,7 @@ extern "C" ...@@ -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" ...@@ -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);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment