From f9af18c937ab48fae8a5d6277cf2fc7a489169af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E8=BE=BE?= Date: Fri, 22 Sep 2023 21:09:51 +0800 Subject: [PATCH] use size_t but not uint32_t. --- src/sysinfo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sysinfo.h b/src/sysinfo.h index 75f5f4c0a..627e24585 100644 --- a/src/sysinfo.h +++ b/src/sysinfo.h @@ -13,7 +13,7 @@ typedef void* CNetworks; typedef void* CDisks; #ifdef WIN32 -typedef uint32_t PID; +typedef size_t PID; #else typedef pid_t PID; #endif