[vlc-devel] [PATCH 1/2] thread: fix typo
Marvin Scholz
epirat07 at gmail.com
Mon Feb 24 16:45:06 CET 2020
---
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);
--
2.21.1 (Apple Git-122.3)
More information about the vlc-devel
mailing list