Skip to content

Commit 588c7c9

Browse files
authored
bpo-1635741: Fix _struct for build bot error (GH-23402)
Automerge-Triggered-By: GH:tiran
1 parent 646d7fd commit 588c7c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/_struct.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -728,7 +728,7 @@ np_halffloat(_structmodulestate *state, char *p, PyObject *v, const formatdef *f
728728
#if PY_LITTLE_ENDIAN
729729
return pack_halffloat(state, p, v, 1);
730730
#else
731-
return pack_halffloat(statem p, v, 0);
731+
return pack_halffloat(state, p, v, 0);
732732
#endif
733733
}
734734

0 commit comments

Comments
 (0)