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:
parent
994278eff3
commit
4c3f13eda0
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue