diff options
author | Ulrich Drepper <drepper@redhat.com> | 2005-09-06 01:18:13 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2005-09-06 01:18:13 +0000 |
commit | dbc92dc6cbb8f5faefbf2d9ff5ec578b1809310e (patch) | |
tree | 77b159fbc5443af7569dd9733dc92d05d8a768cc /stdio-common | |
parent | 45541bdf5cd8f9faf1b5e1ed995664eaf9a4e969 (diff) | |
download | glibc-dbc92dc6cbb8f5faefbf2d9ff5ec578b1809310e.tar glibc-dbc92dc6cbb8f5faefbf2d9ff5ec578b1809310e.tar.gz glibc-dbc92dc6cbb8f5faefbf2d9ff5ec578b1809310e.tar.bz2 glibc-dbc92dc6cbb8f5faefbf2d9ff5ec578b1809310e.zip |
* configure.in: Compile source test file with -fPIC for -shared.
2005-09-05 Kaz Kojima <kkojima@rr.iij4u.or.jp>
* sysdeps/unix/sysv/linux/sh/lowlevellock.S (__lll_mutex_lock_wait):
Fix typo in register name.
Diffstat (limited to 'stdio-common')
-rw-r--r-- | stdio-common/tst-put-error.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdio-common/tst-put-error.c b/stdio-common/tst-put-error.c index a93008c8c5..115dbd509a 100644 --- a/stdio-common/tst-put-error.c +++ b/stdio-common/tst-put-error.c @@ -17,7 +17,7 @@ do_test (void) error (EXIT_FAILURE, errno, "fdopen"); setlinebuf (fp); close (fd); - unlink ("aaa"); + unlink (tmpl); int n = fprintf (fp, "hello world\n"); printf ("fprintf = %d\n", n); if (n >= 0) |