summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2018-08-31 11:40:33 +0200
committersfan5 <sfan5@live.de>2018-10-01 10:41:01 +0200
commita6fb94cf07b8664fecb100489368e0f35d56f946 (patch)
treee1c0f221aff77e66894fff1e0529dc1d2059f344
parent36e7ef96fcbb9950059179b2a83d026e66e44492 (diff)
downloadmpv-a6fb94cf07b8664fecb100489368e0f35d56f946.tar.bz2
mpv-a6fb94cf07b8664fecb100489368e0f35d56f946.tar.xz
rendezvous: fix a typo
-rw-r--r--misc/rendezvous.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/rendezvous.c b/misc/rendezvous.c
index 9af798dd07..aa94a9042d 100644
--- a/misc/rendezvous.c
+++ b/misc/rendezvous.c
@@ -16,7 +16,7 @@ struct waiter {
/* A barrier for 2 threads, which can exchange a value when they meet.
* The first thread to call this function will block. As soon as two threads
* are calling this function with the same tag value, they will unblock, and
- * on each thread the call return the value parameter of the _other_ thread.
+ * on each thread the call returns the value parameter of the _other_ thread.
*
* tag is an arbitrary value, but it must be an unique pointer. If there are
* more than 2 threads using the same tag, things won't work. Typically, it