[vlc-commits] thread: fix typo

Marvin Scholz git at videolan.org
Mon Mar 2 08:16:39 CET 2020


vlc | branch: master | Marvin Scholz <epirat07 at gmail.com> | Mon Feb 24 16:11:03 2020 +0100| [c3b84c1909bd0eece7044e0fa1d47c24cb2e7381] | committer: Marvin Scholz

thread: fix typo

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=c3b84c1909bd0eece7044e0fa1d47c24cb2e7381
---

 src/misc/threads.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/misc/threads.c b/src/misc/threads.c
index 4a7ed0a200..ea78e37453 100644
--- a/src/misc/threads.c
+++ b/src/misc/threads.c
@@ -137,7 +137,7 @@ bool vlc_mutex_held(const vlc_mutex_t *mtx)
 {
     /* This comparison is thread-safe:
      * Even though other threads may modify the owner field at any time,
-     * they will never make ti compare equal to the calling thread.
+     * they will never make it compare equal to the calling thread.
      */
     return THREAD_SELF == atomic_load_explicit(&mtx->owner,
                                                memory_order_relaxed);



More information about the vlc-commits mailing list