From e58163adc6f3f4be0d3e4c1b719c1c71913e7096 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89milie=20Feral?= Date: Thu, 8 Dec 2016 11:26:39 +0100 Subject: [PATCH] [liba] Correct error syntax: 0.0F->0.0f Change-Id: Id81cd3395a27e5411f0d9832fdd09806fbec7cb8 --- liba/include/math.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/liba/include/math.h b/liba/include/math.h index 332b5a87e..ada022f74 100644 --- a/liba/include/math.h +++ b/liba/include/math.h @@ -5,7 +5,7 @@ LIBA_BEGIN_DECLS -#define NAN (0.0F/0.0F) +#define NAN (0.0f/0.0f) /* The C99 standard requires isinf and isnan to be defined as macros that can * handle arbitrary precision float numbers. The names of the functions called