From d2ef2331f9ec4cc6510cab5cd540bb3c3c863ca8 Mon Sep 17 00:00:00 2001 From: Corinna Vinschen Date: Wed, 11 Mar 2020 13:23:55 +0100 Subject: Cygwin: fix formatting: drop spaces leading tabs Signed-off-by: Corinna Vinschen --- winsup/cygwin/math/atanhl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'winsup/cygwin/math/atanhl.c') diff --git a/winsup/cygwin/math/atanhl.c b/winsup/cygwin/math/atanhl.c index 59eb1bd91..a9b8e24b9 100644 --- a/winsup/cygwin/math/atanhl.c +++ b/winsup/cygwin/math/atanhl.c @@ -26,7 +26,7 @@ long double atanhl (long double x) } /* Rearrange formula to avoid precision loss for small x. atanh(x) = 0.5 * log ((1.0 + x)/(1.0 - x)) - = 0.5 * log1p ((1.0 + x)/(1.0 - x) - 1.0) + = 0.5 * log1p ((1.0 + x)/(1.0 - x) - 1.0) = 0.5 * log1p ((1.0 + x - 1.0 + x) /(1.0 - x)) = 0.5 * log1p ((2.0 * x ) / (1.0 - x)) */ z = 0.5L * __fast_log1pl ((z + z) / (1.0L - z)); -- cgit v1.2.3