summaryrefslogtreecommitdiff
path: root/libcr_ipc/tests/test_mutex.c
diff options
context:
space:
mode:
Diffstat (limited to 'libcr_ipc/tests/test_mutex.c')
-rw-r--r--libcr_ipc/tests/test_mutex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcr_ipc/tests/test_mutex.c b/libcr_ipc/tests/test_mutex.c
index ee088f4..43714c9 100644
--- a/libcr_ipc/tests/test_mutex.c
+++ b/libcr_ipc/tests/test_mutex.c
@@ -28,7 +28,7 @@ COROUTINE cr_worker(void *_mu) {
}
int main() {
- cr_mutex_t mu = {0};
+ cr_mutex_t mu = {};
coroutine_add("a", cr_worker, &mu);
coroutine_add("b", cr_worker, &mu);
coroutine_main();