From 50571f8c87b86b386d6a531c283bda74f3c9603a Mon Sep 17 00:00:00 2001 From: sunghan Date: Tue, 21 Feb 2017 14:05:50 +0900 Subject: [PATCH] fix typo Change-Id: I317eb792b5440eabbba6d04d1b223dec4013f598 --- os/kernel/pthread/pthread_mutextrylock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/os/kernel/pthread/pthread_mutextrylock.c b/os/kernel/pthread/pthread_mutextrylock.c index 2ccb524..ec2082a 100644 --- a/os/kernel/pthread/pthread_mutextrylock.c +++ b/os/kernel/pthread/pthread_mutextrylock.c @@ -138,7 +138,7 @@ int pthread_mutex_trylock(FAR pthread_mutex_t *mutex) /* Try to get the semaphore. */ if (sem_trywait((sem_t *)&mutex->sem) == OK) { - /* If we succussfully obtained the semaphore, then indicate + /* If we successfully obtained the semaphore, then indicate * that we own it. */ mutex->pid = mypid; -- 2.7.4