diff options
Diffstat (limited to 'Source/charon/threads/thread_pool.c')
-rw-r--r-- | Source/charon/threads/thread_pool.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/charon/threads/thread_pool.c b/Source/charon/threads/thread_pool.c index 037222810..7cf802bda 100644 --- a/Source/charon/threads/thread_pool.c +++ b/Source/charon/threads/thread_pool.c @@ -35,12 +35,12 @@ #include <utils/allocator.h> #include <utils/logger.h> +typedef struct private_thread_pool_t private_thread_pool_t; + /** * @brief structure with private members for thread_pool_t */ -typedef struct private_thread_pool_s private_thread_pool_t; - -struct private_thread_pool_s { +struct private_thread_pool_t { /** * inclusion of public members */ |