Skip to content

Commit bc77688

Browse files
Fix SetHashSalt16Bytes assignment in pyexpat.c
1 parent 056585b commit bc77688

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Modules/pyexpat.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2265,9 +2265,9 @@ pyexpat_exec(PyObject *mod)
22652265
capi.SetHashSalt = NULL;
22662266
#endif
22672267
#if XML_COMBINED_VERSION >= 20800
2268-
capi->SetHashSalt16Bytes = XML_SetHashSalt16Bytes;
2268+
capi.SetHashSalt16Bytes = XML_SetHashSalt16Bytes;
22692269
#else
2270-
capi->SetHashSalt16Bytes = NULL;
2270+
capi.SetHashSalt16Bytes = NULL;
22712271
#endif
22722272
#if XML_COMBINED_VERSION >= 20600
22732273
capi.SetReparseDeferralEnabled = XML_SetReparseDeferralEnabled;

0 commit comments

Comments
 (0)