summaryrefslogtreecommitdiff
path: root/lib/libm/complex
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2014-10-10 12:43:15 +0000
committerchristos <christos@NetBSD.org>2014-10-10 12:43:15 +0000
commitdab5dbcd94d779d12c606eeab82fdf778e7b7cbf (patch)
tree71fba0388d39869c152e22a234e8ff0371cfd078 /lib/libm/complex
parent3ba1e3d98d051e67b9e3e6d9f7f9fddcb0acdd5c (diff)
use long constant
Diffstat (limited to 'lib/libm/complex')
-rw-r--r--lib/libm/complex/catanhl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libm/complex/catanhl.c b/lib/libm/complex/catanhl.c
index ad86e6bd099..4969b7029cb 100644
--- a/lib/libm/complex/catanhl.c
+++ b/lib/libm/complex/catanhl.c
@@ -1,4 +1,4 @@
-/* $NetBSD: catanhl.c,v 1.2 2014/10/10 08:34:30 martin Exp $ */
+/* $NetBSD: catanhl.c,v 1.3 2014/10/10 12:43:15 christos Exp $ */
/*-
* Copyright (c) 2007 The NetBSD Foundation, Inc.
@@ -37,6 +37,6 @@ catanhl(long double complex z)
{
long double complex w;
- w = -1.0 * I * catanl(z * I);
+ w = -1.0L * I * catanl(z * I);
return w;
}
/time?h=lockdoc-9.3-vfs-0.2&id=7dbaeb74a50de35a45683de859e2178b3b3baef0'>Sprinkle some KNF.simonb 2004-01-05Homogenize usage messages: make the 'usage' word all lowercase, as this seemsjmmv 2003-08-07Move UCB-licensed code from 4-clause to 3-clause licence.agc 2003-06-27Remove superfluous "".wiz 2003-02-25.Nm does not need a dummy argument ("") before punctuation orwiz 2002-07-16modernize:christos 2002-02-08Generate <>& symbolically. I'm avoiding .../dist/... directories for now.ross 2001-12-08Sort sections.wiz 2001-12-01Whitespace cleanup.wiz 2001-02-03Correct double `s' in `ressource'.he 2001-01-29Plural: is -> arehubertf 2001-01-26Patch fixes spelling, grammar, adds ksh, adds rusage information.hubertf 2000-09-04For commands and utilities, use EXIT STATUS rather than RETURN VALUES orkleink 1999-06-05* Require an `utility' argument to be specified and fail otherwise.kleink 1998-10-14Silence -Wall by casting to (long) in printf formats.wsanchez 1997-10-20WARNSify, deprecate register, getopt returns -1, fix .Nm usagelukem 1996-12-18Remnant of a different area: resource.h is now in /usr/include/syspk 1996-10-18Exit with an error condition if the timed command does not exit.thorpej 1995-06-27sys/signal.h -> signal.hjtc 1995-03-21Update to use timer{add,sub}().mycroft 1994-12-08Merged with 4.4lite.jtc