From 29d6a4cd109ef585cd862ac3dc83080e1af0b51e Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Thu, 11 Sep 2014 09:52:45 +0200 Subject: Drop pointless float qualifiers. --- src/brill.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/brill.c b/src/brill.c index dedd4f1..6d5d7a1 100644 --- a/src/brill.c +++ b/src/brill.c @@ -17,7 +17,7 @@ #define MAX(x, y) ((x) > (y) ? (x) : (y)) #define MIN(x, y) ((x) > (y) ? (y) : (x)) #define SQR(x) ((x) * (x)) -#define SGN(x) ((x) >= 0.0 ? 1.0f : -1.0f) +#define SGN(x) ((x) >= 0.0 ? 1.0 : -1.0) /* * small number to avoid r=0 singularities -- cgit v1.2.3