summaryrefslogtreecommitdiff
path: root/py/misc.h
diff options
context:
space:
mode:
Diffstat (limited to 'py/misc.h')
-rw-r--r--py/misc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/misc.h b/py/misc.h
index c7060ddf9..2dd20365c 100644
--- a/py/misc.h
+++ b/py/misc.h
@@ -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;