diff options
author | Roland McGrath <roland@gnu.org> | 2003-03-03 08:43:31 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2003-03-03 08:43:31 +0000 |
commit | 83f2fcbe7b26ac53dc237c37f52b699207bd9d19 (patch) | |
tree | 817782a4eaba9400194ad9e8d60bd676c2e8c99c /nptl/forward.c | |
parent | 625845408e2dfe6902b538773e195385c5cce741 (diff) | |
download | glibc-83f2fcbe7b26ac53dc237c37f52b699207bd9d19.zip glibc-83f2fcbe7b26ac53dc237c37f52b699207bd9d19.tar.gz glibc-83f2fcbe7b26ac53dc237c37f52b699207bd9d19.tar.bz2 |
2003-03-03 Roland McGrath <roland@redhat.com>
* forward.c: Fix typo in __pthread_attr_init_2_0 compat_symbol decl.
Diffstat (limited to 'nptl/forward.c')
-rw-r--r-- | nptl/forward.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl/forward.c b/nptl/forward.c index d3f42a3..290c2d7 100644 --- a/nptl/forward.c +++ b/nptl/forward.c @@ -47,7 +47,7 @@ FORWARD (pthread_attr_destroy, (pthread_attr_t *attr), (attr), 0) #if SHLIB_COMPAT(libc, GLIBC_2_0, GLIBC_2_1) FORWARD (__pthread_attr_init_2_0, (pthread_attr_t *attr), (attr), 0) -compat_symbol (libc, pthread_attr_init_2_0, pthread_attr_init, GLIBC_2_0); +compat_symbol (libc, __pthread_attr_init_2_0, pthread_attr_init, GLIBC_2_0); #endif FORWARD (__pthread_attr_init_2_1, (pthread_attr_t *attr), (attr), 0) |