diff options
author | 2019-10-30 02:08:38 +0000 | |
---|---|---|
committer | 2019-10-30 02:08:38 +0000 | |
commit | e40f435157d79b01a86a63a04a6631abf9ed7076 (patch) | |
tree | d81bc5f0408748f019e6b53ab6151be267a71061 /lib/libm/src | |
parent | sync (diff) | |
download | wireguard-openbsd-e40f435157d79b01a86a63a04a6631abf9ed7076.tar.xz wireguard-openbsd-e40f435157d79b01a86a63a04a6631abf9ed7076.zip |
Fix declaration of S1 by swapping misplaced ',' and ';'.
This is inside !(defined(__amd64__) || defined(__i386__)),
while the file is only used on those two architectures.
"Free commit! No strings attached! No hidden tricks!" from miod
Diffstat (limited to 'lib/libm/src')
-rw-r--r-- | lib/libm/src/ld80/k_sincosl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libm/src/ld80/k_sincosl.h b/lib/libm/src/ld80/k_sincosl.h index 82421722f68..89c48419b33 100644 --- a/lib/libm/src/ld80/k_sincosl.h +++ b/lib/libm/src/ld80/k_sincosl.h @@ -23,8 +23,8 @@ S1lo = -9.2563760475949941e-18; /* -0x15580000000000.0p-109 */ #define C1 ((long double)C1hi + C1lo) #else static const long double -C1 = 0.0416666666666666666136L; /* 0xaaaaaaaaaaaaaa9b.0p-68 */ -S1 = -0.166666666666666666671L, /* -0xaaaaaaaaaaaaaaab.0p-66 */ +C1 = 0.0416666666666666666136L, /* 0xaaaaaaaaaaaaaa9b.0p-68 */ +S1 = -0.166666666666666666671L; /* -0xaaaaaaaaaaaaaaab.0p-66 */ #endif static const double |