Skip to content

Commit 4729f76

Browse files
committed
Fix variable name
1 parent b98419b commit 4729f76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/_sysconfig.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ _sysconfig_config_vars_impl(PyObject *module)
7171

7272
// Emulate `sys.abiflags` value on Unix for Windows. ABIFLAGS here is only
7373
// an emulated value. It is not present during build on Windows.
74-
if (add_string_value(config, "ABIFLAGS", SYSCONFIG_ABIFLAGS) < 0) {
74+
if (add_string_value(config, "ABIFLAGS", _SYSCONFIG_ABIFLAGS) < 0) {
7575
Py_DECREF(config);
7676
return NULL;
7777
}

0 commit comments

Comments
 (0)