bpo-1635741: Fix _struct for build bot error (GH-23402)

Automerge-Triggered-By: GH:tiran
This commit is contained in:
Dong-hee Na 2020-11-19 23:14:34 +09:00 committed by GitHub
parent 646d7fdefb
commit 588c7c9f08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -728,7 +728,7 @@ np_halffloat(_structmodulestate *state, char *p, PyObject *v, const formatdef *f
#if PY_LITTLE_ENDIAN
return pack_halffloat(state, p, v, 1);
#else
return pack_halffloat(statem p, v, 0);
return pack_halffloat(state, p, v, 0);
#endif
}