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

Commit

Permalink
fix htp__use_threads_ call error
Browse files Browse the repository at this point in the history
  • Loading branch information
wjz2047 committed May 15, 2017
1 parent c6e1797 commit 2ed2f7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions evhtp.c
Original file line number Diff line number Diff line change
Expand Up @@ -4122,7 +4122,7 @@ int
evhtp_use_threads(evhtp_t * htp, evhtp_thread_init_cb init_cb,
int nthreads, void * arg)
{
return htp___use_threads_(htp, init_cb, NULL, nthreads, arg);
return htp__use_threads_(htp, init_cb, NULL, nthreads, arg);
}

int
Expand All @@ -4131,7 +4131,7 @@ evhtp_use_threads_wexit(evhtp_t * htp,
evhtp_thread_exit_cb exit_cb,
int nthreads, void * arg)
{
return htp_use_threads_(htp, init_cb, exit_cb, nthreads, arg);
return htp__use_threads_(htp, init_cb, exit_cb, nthreads, arg);
}

#endif
Expand Down

0 comments on commit 2ed2f7f

Please sign in to comment.