diff options
author | Andreas Jaeger <aj@suse.de> | 2000-06-10 10:17:31 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2000-06-10 10:17:31 +0000 |
commit | 6948d763edaed369e4e43dff0e79fd651cd146b1 (patch) | |
tree | 54509363528c6331ce8a6664611a4a7c28b26f4a | |
parent | 45dc1187ee47bc0ffa9bb7ff7ac49749aaabe413 (diff) | |
download | glibc-6948d763edaed369e4e43dff0e79fd651cd146b1.tar glibc-6948d763edaed369e4e43dff0e79fd651cd146b1.tar.gz glibc-6948d763edaed369e4e43dff0e79fd651cd146b1.tar.bz2 glibc-6948d763edaed369e4e43dff0e79fd651cd146b1.zip |
lockfile.c (__fresetlockfiles): Remove unused variable fp.
2000-06-10 Andreas Jaeger <aj@suse.de>
* lockfile.c (__fresetlockfiles): Remove unused variable fp.
-rw-r--r-- | linuxthreads/ChangeLog | 4 | ||||
-rw-r--r-- | linuxthreads/lockfile.c | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog index f188961916..4b413505bb 100644 --- a/linuxthreads/ChangeLog +++ b/linuxthreads/ChangeLog @@ -1,3 +1,7 @@ +2000-06-10 Andreas Jaeger <aj@suse.de> + + * lockfile.c (__fresetlockfiles): Remove unused variable fp. + 2000-06-10 Kaz Kylheku <kaz@ashi.footprints.net> * sysdeps/pthread/timer_create.c: Thread matching now done on diff --git a/linuxthreads/lockfile.c b/linuxthreads/lockfile.c index b6f98a44be..0ef02f8757 100644 --- a/linuxthreads/lockfile.c +++ b/linuxthreads/lockfile.c @@ -1,5 +1,5 @@ /* lockfile - Handle locking and unlocking of stream. - Copyright (C) 1996, 1998 Free Software Foundation, Inc. + Copyright (C) 1996, 1998, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -90,7 +90,6 @@ __fresetlockfiles (void) #ifdef USE_IN_LIBIO _IO_ITER i; - _IO_FILE *fp; pthread_mutexattr_t attr; __pthread_mutexattr_init (&attr); |