commit | 588c7c9f08a673472a29e3f8f7fda9e343212e7d | [log] [tgz] |
---|---|---|
author | Dong-hee Na <donghee.na@python.org> | Thu Nov 19 23:14:34 2020 +0900 |
committer | GitHub <noreply@github.com> | Thu Nov 19 06:14:34 2020 -0800 |
tree | 14d8a2794d0881fadb2d2fa3657aeedac8c27921 | |
parent | 646d7fdefbbc95a83df665698af7385d10bde66c [diff] [blame] |
bpo-1635741: Fix _struct for build bot error (GH-23402) Automerge-Triggered-By: GH:tiran
diff --git a/Modules/_struct.c b/Modules/_struct.c index 8dfcd88..eeccc17 100644 --- a/Modules/_struct.c +++ b/Modules/_struct.c
@@ -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 }