mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
bpo-1635741: Fix _struct for build bot error (GH-23402)
Automerge-Triggered-By: GH:tiran
This commit is contained in:
parent
646d7fdefb
commit
588c7c9f08
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue