summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2014-12-17 16:44:43 -0500
committerRich Felker <dalias@aerifal.cx>2014-12-17 16:45:42 -0500
commit4075af4318676ebbe5949eb9cee3fec7008de4d7 (patch)
tree5f329d142902b0ce7f5e985c17b0c7f7310de20d /include
parent5ff2a118c64224789b7286830912425e58831b2b (diff)
downloadmusl-4075af4318676ebbe5949eb9cee3fec7008de4d7.tar.gz
make the result of the cimag macro a non-lvalue
this change is not necessary but helps diagnose invalid code. based on patch by Jens Gustedt.
Diffstat (limited to 'include')
-rw-r--r--include/complex.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/complex.h b/include/complex.h
index 23bab7d5..bdddf87b 100644
--- a/include/complex.h
+++ b/include/complex.h
@@ -103,7 +103,7 @@ long double creall(long double complex);
#ifndef __cplusplus
#define __CIMAG(x, t) \
- ((union { _Complex t __z; t __xy[2]; }){(_Complex t)(x)}.__xy[1])
+ (+(union { _Complex t __z; t __xy[2]; }){(_Complex t)(x)}.__xy[1])
#define creal(x) ((double)(x))
#define crealf(x) ((float)(x))