diff options
Diffstat (limited to 'win/tclWinError.c')
-rw-r--r-- | win/tclWinError.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/win/tclWinError.c b/win/tclWinError.c index b49271e..1b59dbe 100644 --- a/win/tclWinError.c +++ b/win/tclWinError.c @@ -11,7 +11,6 @@ */ #include "tclInt.h" -#include "tclPort.h" #ifndef WSAEWOULDBLOCK # define WSAEWOULDBLOCK 10035L @@ -25,7 +24,7 @@ * The following table contains the mapping from Win32 errors to errno errors. */ -static CONST unsigned char errorTable[] = { +static const unsigned char errorTable[] = { 0, EINVAL, /* ERROR_INVALID_FUNCTION 1 */ ENOENT, /* ERROR_FILE_NOT_FOUND 2 */ @@ -301,8 +300,8 @@ static CONST unsigned char errorTable[] = { * errno errors. */ -static CONST int wsaErrorTable[] = { - EWOULDBLOCK, /* WSAEWOULDBLOCK */ +static const unsigned char wsaErrorTable[] = { + EAGAIN, /* WSAEWOULDBLOCK */ EINPROGRESS, /* WSAEINPROGRESS */ EALREADY, /* WSAEALREADY */ ENOTSOCK, /* WSAENOTSOCK */ |