From b5e4fe62ee31d314101b86618ba11702103f083b Mon Sep 17 00:00:00 2001 From: nil0x42 Date: Sat, 11 Apr 2015 00:56:52 +0200 Subject: [PATCH] Fix gcc warning: unused parameter 'thpool_p' --- thpool.c | 1 + 1 file changed, 1 insertion(+) diff --git a/thpool.c b/thpool.c index d255e54..b80abe5 100644 --- a/thpool.c +++ b/thpool.c @@ -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; }