From 0c35487ab3677746a699dee99c0d6e51374659c3 Mon Sep 17 00:00:00 2001 From: Robear Selwans Date: Mon, 31 Jan 2022 19:20:04 +0200 Subject: [PATCH] Fixed double initialization of Float32 Signed-off-by: Robear Selwans --- ev_numeric.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ev_numeric.h b/ev_numeric.h index 55025ae..dc0584f 100644 --- a/ev_numeric.h +++ b/ev_numeric.h @@ -83,10 +83,10 @@ static const struct UInt64Data UInt64 = static const struct Float32Data Float32 = { - .MIN_POS = 1.175494351e-38, - .MIN = -3.402823466e+38, - .MAX = 3.402823466e+38, - .EPS = 1.192093e-07 + .MIN_POS = 1.175494351e-38f, + .MIN = -3.402823466e+38f, + .MAX = 3.402823466e+38f, + .EPS = 1.192093e-07f }; static const struct Float64Data Float64 =