From b7afa92e75ddea744c9bafbb2119b63ea564e122 Mon Sep 17 00:00:00 2001 From: Siva Chandra Reddy Date: Tue, 12 May 2020 16:31:17 -0700 Subject: [libc] Call mtx_init in mtx_test. A typo which was caught has also been fixed. Reviewers: abrachet Differential Revision: https://reviews.llvm.org/D79826 --- libc/src/threads/mtx_init.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libc/src/threads') diff --git a/libc/src/threads/mtx_init.h b/libc/src/threads/mtx_init.h index 0286ab15b236..d85089ff8c2e 100644 --- a/libc/src/threads/mtx_init.h +++ b/libc/src/threads/mtx_init.h @@ -13,7 +13,7 @@ namespace __llvm_libc { -int mtx_int(mtx_t *mutex, int type); +int mtx_init(mtx_t *mutex, int type); } // namespace __llvm_libc -- cgit v1.2.3