diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-04-03 02:29:50 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-04-03 02:29:50 +0200 |
commit | 62108dbf615381e08369491921f388a718dd002e (patch) | |
tree | 839ecaa5dafc5af776793c7589cec25206b9925e /htl | |
parent | a758c29399641150dc38cffc79ab361c20fabcfd (diff) | |
download | glibc-62108dbf615381e08369491921f388a718dd002e.tar glibc-62108dbf615381e08369491921f388a718dd002e.tar.gz glibc-62108dbf615381e08369491921f388a718dd002e.tar.bz2 glibc-62108dbf615381e08369491921f388a718dd002e.zip |
hurd: Fix typo
* htl/pt-cleanup.c: Define __pthread_get_cleanup_stack alias instead of
__pthread_cleanup_stack.
Diffstat (limited to 'htl')
-rw-r--r-- | htl/pt-cleanup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/htl/pt-cleanup.c b/htl/pt-cleanup.c index 05c187306c..1b860c7bf7 100644 --- a/htl/pt-cleanup.c +++ b/htl/pt-cleanup.c @@ -25,4 +25,4 @@ ___pthread_get_cleanup_stack (void) { return &_pthread_self ()->cancelation_handlers; } -strong_alias (___pthread_get_cleanup_stack, __pthread_cleanup_stack) +strong_alias (___pthread_get_cleanup_stack, __pthread_get_cleanup_stack) |