diff options
| author | Damien George <damien@micropython.org> | 2020-06-18 10:58:51 +1000 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2020-06-22 13:42:24 +1000 |
| commit | 6164c7e666fdd0aba232191768a66ab4434a7222 (patch) | |
| tree | c705e973d70326e336d36a58e5c99c025e40979b /py/misc.h | |
| parent | 3a9d948032e27f690e1fb09084c36bd47b1a75a0 (diff) | |
py/misc.h: Add missing semi-colon in mp_float_union_t for big-endian.
Fixes issue #6161.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'py/misc.h')
| -rw-r--r-- | py/misc.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -247,7 +247,7 @@ typedef union _mp_float_union_t { } p; #else struct { - mp_float_uint_t sgn : 1 + mp_float_uint_t sgn : 1; mp_float_uint_t exp : MP_FLOAT_EXP_BITS; mp_float_uint_t frc : MP_FLOAT_FRAC_BITS; } p; |
