about summary refs log tree commit diff
path: root/stdio-common/tst-put-error.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2005-09-06 01:18:13 +0000
committerUlrich Drepper <drepper@redhat.com>2005-09-06 01:18:13 +0000
commitdbc92dc6cbb8f5faefbf2d9ff5ec578b1809310e (patch)
tree77b159fbc5443af7569dd9733dc92d05d8a768cc /stdio-common/tst-put-error.c
parent45541bdf5cd8f9faf1b5e1ed995664eaf9a4e969 (diff)
downloadglibc-dbc92dc6cbb8f5faefbf2d9ff5ec578b1809310e.tar.gz
glibc-dbc92dc6cbb8f5faefbf2d9ff5ec578b1809310e.tar.xz
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/tst-put-error.c')
-rw-r--r--stdio-common/tst-put-error.c2
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)