about summary refs log tree commit diff
path: root/math/complex.h
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@gmail.com>2012-01-08 15:55:52 -0500
committerUlrich Drepper <drepper@gmail.com>2012-01-08 15:55:52 -0500
commit8784a6db9151da74c1ffab427d49014533cf865f (patch)
tree59c005920c7ee52e7f6a156745d95078ca944eea /math/complex.h
parentc473bd1cd99db042dc1958c1bbaff3cba01a7893 (diff)
downloadglibc-8784a6db9151da74c1ffab427d49014533cf865f.tar.gz
glibc-8784a6db9151da74c1ffab427d49014533cf865f.tar.xz
glibc-8784a6db9151da74c1ffab427d49014533cf865f.zip
Fix typo in CMPLXL
Diffstat (limited to 'math/complex.h')
-rw-r--r--math/complex.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/math/complex.h b/math/complex.h
index 9cbcc7f7d0..9217fddf96 100644
--- a/math/complex.h
+++ b/math/complex.h
@@ -54,7 +54,7 @@ __BEGIN_DECLS
 # define CMPLX(x, y) __builtin_complex ((double) (x), (double) (y))
 # define CMPLXF(x, y) __builtin_complex ((float) (x), (float) (y))
 # ifndef __NO_LONG_DOUBLE_MATH
-#  define CMPLXL(x, y) __builtin_complex ((double) (x), (double) (y))
+#  define CMPLXL(x, y) __builtin_complex ((long double) (x), (long double) (y))
 # endif
 #endif