diff options
author | Dong-hee Na <donghee.na@python.org> | 2020-11-19 14:14:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-19 14:14:34 (GMT) |
commit | 588c7c9f08a673472a29e3f8f7fda9e343212e7d (patch) | |
tree | 14d8a2794d0881fadb2d2fa3657aeedac8c27921 | |
parent | 646d7fdefbbc95a83df665698af7385d10bde66c (diff) | |
download | cpython-588c7c9f08a673472a29e3f8f7fda9e343212e7d.zip cpython-588c7c9f08a673472a29e3f8f7fda9e343212e7d.tar.gz cpython-588c7c9f08a673472a29e3f8f7fda9e343212e7d.tar.bz2 |
bpo-1635741: Fix _struct for build bot error (GH-23402)
Automerge-Triggered-By: GH:tiran
-rw-r--r-- | Modules/_struct.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 } |