10000 gh-116738: Fix pre-processor block · python/cpython@0e0dda0 · GitHub
[go: up one dir, main page]

Skip to content

Commit 0e0dda0

Browse files
committed
gh-116738: Fix pre-processor block
1 parent 9dc5fb6 commit 0e0dda0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/grpmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ grp_getgrnam_impl(PyObject *module, PyObject *name)
265265
p = getgrnam(name_chars);
266266
#endif
267267
if (p == NULL) {
268-
#ifndef HAVE_GETGRGID_R
268+
#ifndef HAVE_GETGRNAM_R
269269
PyMutex_Unlock(&getgrnam_mutex);
270270
#endif
271271
if (nomem == 1) {

0 commit comments

Comments
 (0)
0