summaryrefslogtreecommitdiff
path: root/lib/librthread
diff options
context:
space:
mode:
authorBrad Smith <brad@cvs.openbsd.org>2005-12-22 20:48:58 +0000
committerBrad Smith <brad@cvs.openbsd.org>2005-12-22 20:48:58 +0000
commita0a99d79a29f234568671e2e29d03bf7a94595e2 (patch)
treec4f8a66f15de40c5f3af299b36b4f72e15e83777 /lib/librthread
parent200ae3a92ba919ef6f833f3ffcd11ecb6f9022bb (diff)
add a missing underscore to the function name rthread_tls_destructors().
Diffstat (limited to 'lib/librthread')
-rw-r--r--lib/librthread/rthread_tls.c4
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;