1
0
Fork 0
mirror of https://github.com/warmcat/libwebsockets.git synced 2025-03-30 00:00:16 +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 dcf9dcaf2a
commit 0ee1984c5c

View file

@ -88,8 +88,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;