diff options
Diffstat (limited to 'stdlib')
-rw-r--r-- | stdlib/tst-strtod.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/tst-strtod.c b/stdlib/tst-strtod.c index 2b93bbd95c..f9ab583ca0 100644 --- a/stdlib/tst-strtod.c +++ b/stdlib/tst-strtod.c @@ -150,7 +150,7 @@ main (int argc, char ** argv) } const char input2[] = "+1.000000000116415321826934814453125"; - if (strtold (input2, NULL) != +1.000000000116415321826934814453125) + if (strtold (input2, NULL) != +1.000000000116415321826934814453125L) { printf ("input2: %La != %La\n", strtold (input2, NULL), +1.000000000116415321826934814453125L); |