[PATCH] ntdll: Fix its vs it's typos

Nikolay Sivov nsivov at codeweavers.com
Mon Aug 1 17:10:09 CDT 2016


Signed-off-by: Nikolay Sivov <nsivov at codeweavers.com>
---
 dlls/ntdll/sync.c       | 2 +-
 dlls/ntdll/threadpool.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/ntdll/sync.c b/dlls/ntdll/sync.c
index bef85a8..c179760 100644
--- a/dlls/ntdll/sync.c
+++ b/dlls/ntdll/sync.c
@@ -1537,7 +1537,7 @@ DWORD WINAPI RtlRunOnceExecuteOnce( RTL_RUN_ONCE *once, PRTL_RUN_ONCE_INIT_FN fu
  * purposes. The following table lists all possible states the lock can be
  * in, notation: [X, #exclusive, #shared]:
  *
- * [0,   0,   N] -> locked by N shared access threads, if N=0 its unlocked
+ * [0,   0,   N] -> locked by N shared access threads, if N=0 it's unlocked
  * [0, >=1, >=1] -> threads are requesting exclusive locks, but there are
  * still shared access threads inside. #shared should not be incremented
  * anymore!
diff --git a/dlls/ntdll/threadpool.c b/dlls/ntdll/threadpool.c
index 15510e2..799245c 100644
--- a/dlls/ntdll/threadpool.c
+++ b/dlls/ntdll/threadpool.c
@@ -1217,7 +1217,7 @@ static void CALLBACK timerqueue_thread_proc( void *param )
             timer->u.timer.timer_pending = FALSE;
             tp_object_submit( timer, FALSE );
 
-            /* Insert the timer back into the queue, except its marked for shutdown. */
+            /* Insert the timer back into the queue, except it's marked for shutdown. */
             if (timer->u.timer.period && !timer->shutdown)
             {
                 timer->u.timer.timeout += (ULONGLONG)timer->u.timer.period * 10000;
-- 
2.8.1




More information about the wine-patches mailing list