diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2013-04-15 22:11:30 +0200 |
---|---|---|
committer | Thomas Schwinge <thomas@codesourcery.com> | 2013-04-15 22:11:30 +0200 |
commit | 207d1e2a6c4c72a1a6154ae9800e8061669995a5 (patch) | |
tree | d456f42ec5565a0edc3b193e3a335b585e9f5989 | |
parent | 306dfba9e1daac21ab5a45256b367aea9cf9c3ee (diff) | |
download | glibc-207d1e2a6c4c72a1a6154ae9800e8061669995a5.tar glibc-207d1e2a6c4c72a1a6154ae9800e8061669995a5.tar.gz glibc-207d1e2a6c4c72a1a6154ae9800e8061669995a5.tar.bz2 glibc-207d1e2a6c4c72a1a6154ae9800e8061669995a5.zip |
Fix coding-style violation.
Introduced in commit ee091edf1a16312fff0cc3c6ae0116aded7f1dbf.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | stdio-common/tstdiomisc.c | 8 |
2 files changed, 8 insertions, 4 deletions
@@ -1,3 +1,7 @@ +2013-04-15 Thomas Schwinge <thomas@codesourcery.com> + + * stdio-common/tstdiomisc.c: Fix coding-style violation. + 2013-04-15 Andreas Schwab <schwab@suse.de> * nscd/grpcache.c (cache_addgr): Properly check for short write. diff --git a/stdio-common/tstdiomisc.c b/stdio-common/tstdiomisc.c index 5c046bbef3..5a25ecc9f0 100644 --- a/stdio-common/tstdiomisc.c +++ b/stdio-common/tstdiomisc.c @@ -50,10 +50,10 @@ volatile double qnanval; volatile long double lqnanval; /* A sNaN is only guaranteed to be representable in variables with static (or thread-local) storage duration. */ -static volatile double snanval = __builtin_nans(""); -static volatile double msnanval = -__builtin_nans(""); -static volatile long double lsnanval = __builtin_nansl(""); -static volatile long double lmsnanval = -__builtin_nansl(""); +static volatile double snanval = __builtin_nans (""); +static volatile double msnanval = -__builtin_nans (""); +static volatile long double lsnanval = __builtin_nansl (""); +static volatile long double lmsnanval = -__builtin_nansl (""); volatile double infval; volatile long double linfval; |