Merge pull request #97 from timgates42/bugfix_typo_success

docs: fix simple typo, successs -> success
This commit is contained in:
Manos 2020-12-07 12:58:29 +00:00 committed by GitHub
commit b259a6e29a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ threadpool thpool_init(int num_threads);
* @param threadpool threadpool to which the work will be added * @param threadpool threadpool to which the work will be added
* @param function_p pointer to function to add as work * @param function_p pointer to function to add as work
* @param arg_p pointer to an argument * @param arg_p pointer to an argument
* @return 0 on successs, -1 otherwise. * @return 0 on success, -1 otherwise.
*/ */
int thpool_add_work(threadpool, void (*function_p)(void*), void* arg_p); int thpool_add_work(threadpool, void (*function_p)(void*), void* arg_p);