Skip to content

Commit e0691f5

Browse files
committed
fix copy-paste error
1 parent 176aa3d commit e0691f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Include/cpython/critical_section.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,13 +91,13 @@ PyCriticalSection2_End(PyCriticalSection2 *c);
9191
#ifndef Py_GIL_DISABLED
9292
# define Py_BEGIN_CRITICAL_SECTION(op) \
9393
{
94-
# define Py_BEGIN_CRITICAL_SECTION_MUTEX(mut) \
94+
# define Py_BEGIN_CRITICAL_SECTION_MUTEX(mutex) \
9595
{
9696
# define Py_END_CRITICAL_SECTION() \
9797
}
9898
# define Py_BEGIN_CRITICAL_SECTION2(a, b) \
9999
{
100-
# define Py_BEGIN_CRITICAL_SECTION2_MUTEX(mut) \
100+
# define Py_BEGIN_CRITICAL_SECTION2_MUTEX(m1, m2) \
101101
{
102102
# define Py_END_CRITICAL_SECTION2() \
103103
}

0 commit comments

Comments
 (0)