diff options
author | Mike Frysinger <vapier@gentoo.org> | 2012-04-24 01:25:48 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2012-04-24 01:26:09 -0400 |
commit | 9c8c3a7914579e4a96f0fba4f5882f59dd864d1a (patch) | |
tree | 78921aaf499fe05b86d61fff9c97596d454bad10 | |
parent | 6f42e7e2cf9de444f2ef4c28f7754d84e8f966e3 (diff) |
linuxthreads.old: fix typo in pthread_mutex_unlock hidden prototype
Reported-by: Tony Wu <tung7970@gmail.com>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
-rw-r--r-- | libpthread/linuxthreads.old/internals.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpthread/linuxthreads.old/internals.h b/libpthread/linuxthreads.old/internals.h index cbd8a11af..2d020bc16 100644 --- a/libpthread/linuxthreads.old/internals.h +++ b/libpthread/linuxthreads.old/internals.h @@ -511,7 +511,7 @@ extern __typeof(pthread_mutex_init) __pthread_mutex_init attribute_hidden; extern __typeof(pthread_mutex_destroy) __pthread_mutex_destroy attribute_hidden; extern __typeof(pthread_mutex_lock) __pthread_mutex_lock attribute_hidden; extern __typeof(pthread_mutex_trylock) __pthread_mutex_trylock attribute_hidden; -extern __typeof(pthread_mutex_unlock) __pthread_mutex_attribute_hidden; +extern __typeof(pthread_mutex_unlock) __pthread_mutex_unlock attribute_hidden; #endif /* Prototypes for some of the new semaphore functions. */ |