summaryrefslogtreecommitdiff
path: root/libcr_ipc/tests/test_mutex.c
diff options
context:
space:
mode:
authorLuke T. Shumaker <lukeshu@lukeshu.com>2025-04-07 00:09:00 -0600
committerLuke T. Shumaker <lukeshu@lukeshu.com>2025-04-07 01:55:23 -0600
commit4d5a8b2f99be5e04954c5067080d1725af8c0ae7 (patch)
tree2b1d87719555eeb2159e7e79dcac5605dbb45c74 /libcr_ipc/tests/test_mutex.c
parent599c887d12d406296f356a02b1088f04ffe1f26e (diff)
libcr_ipc: Pull as much as possible from public .h to .c files
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();