diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | stdio-common/tst-put-error.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2012-12-05 Joseph Myers <joseph@codesourcery.com> + + * stdio-common/tst-put-error.c (do_test): Use 10000000 instead of + 10000 as width of padded output. + 2012-12-04 Joseph Myers <joseph@codesourcery.com> * sysdeps/powerpc/sysdep.h (_SYS_AUXV_H): Define to 1 not empty. diff --git a/stdio-common/tst-put-error.c b/stdio-common/tst-put-error.c index 7b95491725..5209cce173 100644 --- a/stdio-common/tst-put-error.c +++ b/stdio-common/tst-put-error.c @@ -47,7 +47,7 @@ do_test (void) error (EXIT_FAILURE, 0, "second fprintf succeeded"); /* Padded printing takes a different code path. */ - n = fprintf (fp, "%10000s", "foo"); + n = fprintf (fp, "%10000000s", "foo"); printf ("fprintf = %d\n", n); if (n >= 0) error (EXIT_FAILURE, 0, "padded fprintf succeeded"); |