1
0
Fork 0
mirror of https://github.com/warmcat/libwebsockets.git synced 2025-03-09 00:00:04 +01:00

win: change uid_t and gid_t from int to unsigned int

Like they are on Linux.
This commit is contained in:
Orgad Shaneh 2024-10-02 10:11:03 +03:00 committed by Andy Green
parent 994278eff3
commit 4c3f13eda0

View file

@ -102,8 +102,8 @@ typedef unsigned long long lws_intptr_t;
#define O_RDONLY _O_RDONLY
#endif
typedef int uid_t;
typedef int gid_t;
typedef unsigned int uid_t;
typedef unsigned int gid_t;
typedef unsigned short sa_family_t;
#if !defined(LWS_HAVE_SUSECONDS_T)
typedef unsigned int useconds_t;