From 29d768609375a5c9e01750a4be691b7b1c9434b5 Mon Sep 17 00:00:00 2001 From: Jonathan Bradley Date: Tue, 12 Dec 2023 14:03:32 -0500 Subject: use specific types for handle indexes consistently --- src/thread_pool.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/thread_pool.cpp') diff --git a/src/thread_pool.cpp b/src/thread_pool.cpp index 48338e5..3af2273 100644 --- a/src/thread_pool.cpp +++ b/src/thread_pool.cpp @@ -16,7 +16,7 @@ struct ThreadPool { MemBucket *bkt = nullptr; }; -const uint32_t MAX_THREADS_PER_BUCKET = 8; +const PkeHandleItemIndex_T MAX_THREADS_PER_BUCKET = 8; struct ThreadBucket { ThreadPool threadPools[MAX_THREADS_PER_BUCKET]; }; -- cgit v1.2.3