From: Dong-hee Na Date: Thu, 19 Nov 2020 14:14:34 +0000 (+0900) Subject: bpo-1635741: Fix _struct for build bot error (GH-23402) X-Git-Tag: v3.10.0a3~142 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=588c7c9f08a673472a29e3f8f7fda9e343212e7d;p=thirdparty%2FPython%2Fcpython.git 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 8dfcd882a444..eeccc1796546 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 }