fix typo 84/115684/1
authorsunghan <sh924.chang@samsung.com>
Tue, 21 Feb 2017 05:05:50 +0000 (14:05 +0900)
committersunghan <sh924.chang@samsung.com>
Tue, 21 Feb 2017 05:05:50 +0000 (14:05 +0900)
Change-Id: I317eb792b5440eabbba6d04d1b223dec4013f598

os/kernel/pthread/pthread_mutextrylock.c

index 2ccb524..ec2082a 100644 (file)
@@ -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;