diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2005-12-22 20:48:58 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2005-12-22 20:48:58 +0000 |
commit | a0a99d79a29f234568671e2e29d03bf7a94595e2 (patch) | |
tree | c4f8a66f15de40c5f3af299b36b4f72e15e83777 /lib/librthread | |
parent | 200ae3a92ba919ef6f833f3ffcd11ecb6f9022bb (diff) |
add a missing underscore to the function name rthread_tls_destructors().
Diffstat (limited to 'lib/librthread')
-rw-r--r-- | lib/librthread/rthread_tls.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/librthread/rthread_tls.c b/lib/librthread/rthread_tls.c index c4484982285..fb1c9074303 100644 --- a/lib/librthread/rthread_tls.c +++ b/lib/librthread/rthread_tls.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rthread_tls.c,v 1.9 2005/12/22 06:49:48 tedu Exp $ */ +/* $OpenBSD: rthread_tls.c,v 1.10 2005/12/22 20:48:57 brad Exp $ */ /* * Copyright (c) 2004,2005 Ted Unangst <tedu@openbsd.org> * All Rights Reserved. @@ -135,7 +135,7 @@ pthread_setspecific(pthread_key_t key, const void *data) } void -rthread_tls_destructors(pthread_t thread) +_rthread_tls_destructors(pthread_t thread) { struct rthread_storage *rs; int i; |