From 8784a6db9151da74c1ffab427d49014533cf865f Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sun, 8 Jan 2012 15:55:52 -0500 Subject: Fix typo in CMPLXL --- math/complex.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'math') 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 -- cgit 1.4.1