diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | libio/tst-fwrite-error.c | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,7 @@ 2013-04-15 Siddhesh Poyarekar <siddhesh@redhat.com> + * libio/tst-fwrite-error.c (do_test): Fix BUF array definition. + * benchtests/Rules (bench-deps): Collect dependencies into a single variable. Add Makefile to dependencies. ($(objpfx)bench-%.c): Depend on bench-deps. diff --git a/libio/tst-fwrite-error.c b/libio/tst-fwrite-error.c index e2507ef..87c8766 100644 --- a/libio/tst-fwrite-error.c +++ b/libio/tst-fwrite-error.c @@ -36,7 +36,7 @@ do_test (void) return 1; } - char buf[5] = "world"; + char buf[] = "world"; setvbuf (fp, NULL, _IONBF, 0); close (fd); unlink (tmpl); |