mirror of
https://github.com/webmproject/libwebp.git
synced 2024-12-26 13:48:21 +01:00
Merge "cosmetics: thread.c: drop a redundant comment"
This commit is contained in:
commit
7bbe95293f
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user