summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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