about summary refs log tree commit diff
path: root/converter/other/pamtosvg/epsilon.c
diff options
context:
space:
mode:
Diffstat (limited to 'converter/other/pamtosvg/epsilon.c')
-rw-r--r--converter/other/pamtosvg/epsilon.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/converter/other/pamtosvg/epsilon.c b/converter/other/pamtosvg/epsilon.c
index 0c914dae..f5370475 100644
--- a/converter/other/pamtosvg/epsilon.c
+++ b/converter/other/pamtosvg/epsilon.c
@@ -11,7 +11,9 @@ epsilon_equal(float const v1,
               float const v2) {
 
     return
-        v1 == v2		       /* Usually they'll be exactly equal, anyway.  */
+        v1 == v2                       /* Usually they'll be exactly equal, anyway.  */
         || fabs(v1 - v2) <= REAL_EPSILON;
 }
 
+
+