Remove useless usage of ssize_t
This commit is contained in:
parent
c3e8337bbd
commit
ac49f1e97f
2 changed files with 1 additions and 15 deletions
|
@ -40,20 +40,6 @@ extern "C" {
|
|||
#define strcasecmp stricmp
|
||||
#define getdtablesize() 30000
|
||||
|
||||
#ifdef __MINGW64__
|
||||
#else
|
||||
#ifdef __MINGW32__
|
||||
#else
|
||||
|
||||
#ifndef __SSIZE_T
|
||||
#define __SSIZE_T
|
||||
|
||||
typedef SSIZE_T ssize_t;
|
||||
|
||||
#endif // __SSIZE_T
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#define LWS_VISIBLE
|
||||
|
||||
#ifdef LWS_DLL
|
||||
|
|
|
@ -106,7 +106,7 @@ int lws_server_socket_service(struct libwebsocket_context *context,
|
|||
socklen_t clilen;
|
||||
struct sockaddr_in cli_addr;
|
||||
int n;
|
||||
ssize_t len;
|
||||
int len;
|
||||
#ifdef LWS_OPENSSL_SUPPORT
|
||||
int m;
|
||||
#ifndef USE_CYASSL
|
||||
|
|
Loading…
Add table
Reference in a new issue