Merge "cosmetics: thread.c: drop a redundant comment"

This commit is contained in:
pascal massimino 2013-07-31 23:56:06 -07:00 committed by Gerrit Code Review
commit 7bbe95293f

View File

@ -126,14 +126,14 @@ static int pthread_cond_wait(pthread_cond_t* const condition,
return !ok;
}
#else // _WIN32
#else // !_WIN32
# define THREADFN void*
# define THREAD_RETURN(val) val
#endif
#endif // _WIN32
//------------------------------------------------------------------------------
static THREADFN ThreadLoop(void* ptr) { // thread loop
static THREADFN ThreadLoop(void* ptr) {
WebPWorker* const worker = (WebPWorker*)ptr;
int done = 0;
while (!done) {