diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2023-03-09 21:15:39 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-09 21:15:39 +0100 |
| commit | 15c0dca5206d0101de2ce73b97138a2b26949011 (patch) | |
| tree | 229102c5ce1f56d31007ce5db8da4bc47c0ec8f7 /src/lib/openjp2/thread.c | |
| parent | fbdf28a282cce8e4ba9d6a5d8c2a3332e20f3bb9 (diff) | |
| parent | eb8a7e44279415fdefda6d980b99bd7e00c41da0 (diff) | |
Merge pull request #1462 from sebras/master
CMake: error out on warnings for strict/missing prototypes.
Diffstat (limited to 'src/lib/openjp2/thread.c')
| -rw-r--r-- | src/lib/openjp2/thread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/openjp2/thread.c b/src/lib/openjp2/thread.c index f2fca2ee..240810b1 100644 --- a/src/lib/openjp2/thread.c +++ b/src/lib/openjp2/thread.c @@ -221,7 +221,7 @@ struct opj_thread_t { HANDLE hThread; }; -unsigned int __stdcall opj_thread_callback_adapter(void *info) +static unsigned int __stdcall opj_thread_callback_adapter(void *info) { opj_thread_t* thread = (opj_thread_t*) info; HANDLE hEvent = NULL; |
