mirror of
https://github.com/python/cpython.git
synced 2025-07-07 19:35:27 +00:00
GH-131296: fix clang-cl warning on Windows in semaphore.c (GH-131595)
fix clangcl warning
This commit is contained in:
parent
18249d9383
commit
bc26f95e8f
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ class _multiprocessing.SemLock "SemLockObject *" "&_PyMp_SemLockType"
|
|||
#define SEM_UNLINK(name) 0
|
||||
|
||||
static int
|
||||
_GetSemaphoreValue(HANDLE handle, long *value)
|
||||
_GetSemaphoreValue(HANDLE handle, int *value)
|
||||
{
|
||||
long previous;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue