Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2011-03-02 00:43:15 +0300
committerJeff Johnston <jjohnstn@redhat.com>2011-03-02 00:43:15 +0300
commit127c3221cd3d5ebed1869f2e18604f22c8ed45f7 (patch)
treec9df78bfc7fed983f40b2e92a824db942f21724e /newlib/libm/complex/cproj.c
parentba5f92981d9071c79838017587085a1c0cbce7b3 (diff)
2011-03-01 Aaron Landwehr <snaphat@gmail.com>
* libm/complex/cproj.c: Fix typo. * libm/complex/cprojf.c: Ditto.
Diffstat (limited to 'newlib/libm/complex/cproj.c')
-rw-r--r--newlib/libm/complex/cproj.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libm/complex/cproj.c b/newlib/libm/complex/cproj.c
index 42fc0f1e8..32a757f92 100644
--- a/newlib/libm/complex/cproj.c
+++ b/newlib/libm/complex/cproj.c
@@ -93,7 +93,7 @@ cproj(double complex z)
{
double_complex w = { .z = z };
- if (isinf(creal(z) || isinf(cimag(z)))) {
+ if (isinf(creal(z)) || isinf(cimag(z))) {
#ifdef __INFINITY
REAL_PART(w) = __INFINITY;
#else