]> sourceware.org Git - glibc.git/commitdiff
Update.
authorAndreas Jaeger <aj@suse.de>
Wed, 25 Jun 2003 14:21:44 +0000 (14:21 +0000)
committerAndreas Jaeger <aj@suse.de>
Wed, 25 Jun 2003 14:21:44 +0000 (14:21 +0000)
* stdlib/tst-strtod.c (main): Declare constant long double as
suggested by Jakub Jelinek and Andreas Schwab.

ChangeLog
stdlib/tst-strtod.c

index d0accd10cc946e172d91273456d2237ab1257797..334e28250c9eaf1c708354c924e0f29ebbcb95cf 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2003-06-25  Andreas Jaeger  <aj@suse.de>
 
+       * stdlib/tst-strtod.c (main): Declare constant long double as
+       suggested by Jakub Jelinek and Andreas Schwab.
+
        * posix/tst-nanosleep.c: Include <time.h> for nanosleep
        declaration.
        
index 2b93bbd95c7db4bd42a23648e30cf60ec96a2809..f9ab583ca06d174a199983532a743da5a50ab652 100644 (file)
@@ -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);
This page took 0.051715 seconds and 5 git commands to generate.