From 588c7c9f08a673472a29e3f8f7fda9e343212e7d Mon Sep 17 00:00:00 2001 From: Dong-hee Na Date: Thu, 19 Nov 2020 23:14:34 +0900 Subject: bpo-1635741: Fix _struct for build bot error (GH-23402) Automerge-Triggered-By: GH:tiran --- Modules/_struct.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } -- cgit v0.12