From 533b93a46ccb12c6e5a942164c48a964eadd1aac Mon Sep 17 00:00:00 2001 From: pyroix Date: Wed, 14 Apr 2021 22:28:23 +0800 Subject: [PATCH] update en/device-dev/kernel/standard-library-0.md. --- en/device-dev/kernel/standard-library-0.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/device-dev/kernel/standard-library-0.md b/en/device-dev/kernel/standard-library-0.md index a7f9e51ff0..5d885291e1 100644 --- a/en/device-dev/kernel/standard-library-0.md +++ b/en/device-dev/kernel/standard-library-0.md @@ -68,7 +68,7 @@ static void *ChildThreadFunc(void *arg) /* Attempt to lock a mutex, which is failed in normal cases. */ rc = pthread_mutex_trylock(&g_td.mutex); if (rc == 0) { - printf("ERROR: mutex gets an abnomal lock!\n"); + printf("ERROR: mutex gets an abnormal lock!\n"); goto EXIT; } -- GitLab