Skip to content
This repository has been archived by the owner on Jun 30, 2021. It is now read-only.

Commit

Permalink
Fix typo in evthr_new() function name
Browse files Browse the repository at this point in the history
This regression was introduced in b634002.
  • Loading branch information
vincentbernat committed Oct 13, 2017
1 parent f5e6baa commit 3cfeb03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion thread.c
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ _evthr_new(evthr_init_cb init_cb, evthr_exit_cb exit_cb, void * args) {
} /* evthr_new */

evthr_t *
evhtr_new(evthr_init_cb init_cb, void * args) {
evthr_new(evthr_init_cb init_cb, void * args) {
return _evthr_new(init_cb, NULL, args);
}

Expand Down

0 comments on commit 3cfeb03

Please sign in to comment.