diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-01-16 21:21:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-16 21:21:15 +0100 |
commit | 5d9b0cc31df5b84a90fcf2bd322344c13c065014 (patch) | |
tree | e9b85cdc26a2a140ac6675d90dced255eb72c3c6 /thirdparty/libwebp/src/utils/thread_utils.c | |
parent | 6b64c60b0eade65ca1147a0af39baefec732d652 (diff) | |
parent | 65f2ab1b61d0949bae7f06553b081e1aae276148 (diff) |
Merge pull request #35214 from volzhs/libwebp-1.1.0
Update libwebp to 1.1.0
Diffstat (limited to 'thirdparty/libwebp/src/utils/thread_utils.c')
-rw-r--r-- | thirdparty/libwebp/src/utils/thread_utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/thirdparty/libwebp/src/utils/thread_utils.c b/thirdparty/libwebp/src/utils/thread_utils.c index 438296b45f..4e470e17ac 100644 --- a/thirdparty/libwebp/src/utils/thread_utils.c +++ b/thirdparty/libwebp/src/utils/thread_utils.c @@ -73,7 +73,7 @@ typedef struct { #endif static int pthread_create(pthread_t* const thread, const void* attr, - unsigned int (__stdcall *start)(void*), void* arg) { + unsigned int (__stdcall* start)(void*), void* arg) { (void)attr; #ifdef USE_CREATE_THREAD *thread = CreateThread(NULL, /* lpThreadAttributes */ |