summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2014-09-11 09:52:45 +0200
committerAnton Khirnov <anton@khirnov.net>2014-09-11 09:52:45 +0200
commit29d6a4cd109ef585cd862ac3dc83080e1af0b51e (patch)
treee8ca2b5bff9f8914061a21492b367276361d6aaa
parent437ffad56eef47103f6d4a51fa202cafbcfe465d (diff)
Drop pointless float qualifiers.
-rw-r--r--src/brill.c2
1 files changed, 1 insertions, 1 deletions
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