From 03d012bf3722a48789de3f88e99f8a2219c68026 Mon Sep 17 00:00:00 2001 From: Sebastian Reimers Date: Sun, 20 Oct 2024 09:42:46 +0200 Subject: [PATCH] use DWORD for id --- include/re_thread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/re_thread.h b/include/re_thread.h index 20d58010a..40d79667f 100644 --- a/include/re_thread.h +++ b/include/re_thread.h @@ -24,7 +24,7 @@ #if defined(WIN32) struct thrd_win32 { HANDLE hdl; - uint32_t id; + DWORD id; }; #ifndef WIN32_LEAN_AND_MEAN