Fix gcc warning: unused parameter 'thpool_p'

This commit is contained in:
nil0x42 2015-04-11 00:56:52 +02:00
parent 29c8e4e401
commit b5e4fe62ee

View File

@ -274,6 +274,7 @@ void thpool_pause(thpool_* thpool_p) {
/* Resume all threads in threadpool */
void thpool_resume(thpool_* thpool_p) {
(void)thpool_p;
threads_on_hold = 0;
}