summaryrefslogtreecommitdiff
path: root/src/threads/cnd_broadcast.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/threads/cnd_broadcast.c')
-rw-r--r--src/threads/cnd_broadcast.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/threads/cnd_broadcast.c b/src/threads/cnd_broadcast.c
index 5253c1e8..a1f80b48 100644
--- a/src/threads/cnd_broadcast.c
+++ b/src/threads/cnd_broadcast.c
@@ -9,7 +9,7 @@ int cnd_broadcast(cnd_t *cond)
return pthread_cond_broadcast(cond) == 0 ? thrd_success : thrd_error;
}
-__check_1(int, 0, cnd_broadcast, cnd_t *)
+CHECK_1(int, 0, cnd_broadcast, cnd_t *)
/*
STDC(201112)