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