diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | stdio-common/bug26.c | 5 |
2 files changed, 5 insertions, 2 deletions
@@ -1,5 +1,7 @@ 2013-05-26 Thomas Schwinge <thomas@codesourcery.com> + * stdio-common/bug26.c (main): Correct fscanf template. + * sysdeps/mach/hurd/dl-sysdep.c (_dl_sysdep_start:go): Don't declare _dl_skip_args. diff --git a/stdio-common/bug26.c b/stdio-common/bug26.c index a4c6bce..cc54b96 100644 --- a/stdio-common/bug26.c +++ b/stdio-common/bug26.c @@ -28,8 +28,9 @@ main (void) char s[] = "+.e"; f = fmemopen (s, strlen (s), "r"); - /* This should fail to parse a float and leave 'e' in the input. */ - lost |= (fscanf (f, "%f", &d) != 0); + /* This should fail to parse a floating-point number, and leave 'e' in the + input. */ + lost |= (fscanf (f, "%lf", &d) != 0); c = fgetc (f); lost |= c != 'e'; puts (lost ? "Test FAILED!" : "Test succeeded."); |