Skip to content

Commit 4dcb0e8

Browse files
committed
include: Fix typo v_cond_timed_wait -> v_cond_timedwait
1 parent 5b92877 commit 4dcb0e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/v.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,7 @@ int v_cond_wait(v_cond *c, v_mutex *m) {
529529
if (!c || !m)
530530
return -1;
531531
#if defined(WINDOWS)
532-
return v_cond_timed_wait(c, m, NULL);
532+
return v_cond_timedwait(c, m, NULL);
533533
#else
534534
return pthread_cond_wait(&c->cond, &m->lock);
535535
#endif

0 commit comments

Comments
 (0)