summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTed Unangst <tedu@cvs.openbsd.org>2013-06-01 19:47:29 +0000
committerTed Unangst <tedu@cvs.openbsd.org>2013-06-01 19:47:29 +0000
commit46368757a8a5e3bfa082df4a8fab1ef30b13673a (patch)
tree74cf716db0fbf7931543b009b30b5c1dc9a384b8 /lib
parentd04db9bac26b730bfa2973a7e3324c50ab0d9ced (diff)
fix wrong fn name in debug
Diffstat (limited to 'lib')
-rw-r--r--lib/librthread/rthread_sync.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/librthread/rthread_sync.c b/lib/librthread/rthread_sync.c
index 077ecbc7d56..394c0d4b503 100644
--- a/lib/librthread/rthread_sync.c
+++ b/lib/librthread/rthread_sync.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rthread_sync.c,v 1.36 2012/04/14 12:07:49 kurt Exp $ */
+/* $OpenBSD: rthread_sync.c,v 1.37 2013/06/01 19:47:28 tedu Exp $ */
/*
* Copyright (c) 2004,2005 Ted Unangst <tedu@openbsd.org>
* Copyright (c) 2012 Philip Guenther <guenther@openbsd.org>
@@ -445,7 +445,7 @@ pthread_cond_wait(pthread_cond_t *condp, pthread_mutex_t *mutexp)
if ((error = pthread_cond_init(condp, NULL)))
return (error);
cond = *condp;
- _rthread_debug(5, "%p: cond_timed %p,%p\n", (void *)self,
+ _rthread_debug(5, "%p: cond_wait %p,%p\n", (void *)self,
(void *)cond, (void *)mutex);
if (mutex == NULL)