diff options
| author | nijtmans <nijtmans> | 2010-01-31 23:51:36 (GMT) |
|---|---|---|
| committer | nijtmans <nijtmans> | 2010-01-31 23:51:36 (GMT) |
| commit | e814514485e24e7b0261b39e6e776f782f918acd (patch) | |
| tree | 012d77fe11409a3025fcb54cc6c78d69b36f953a /win/tclWinError.c | |
| parent | f652e9f0e1df416dda4fa5c0ff53ced65374c0df (diff) | |
| download | tcl-e814514485e24e7b0261b39e6e776f782f918acd.zip tcl-e814514485e24e7b0261b39e6e776f782f918acd.tar.gz tcl-e814514485e24e7b0261b39e6e776f782f918acd.tar.bz2 | |
Various CYGWIN-related fixes
backported from HEAD. Still
configure script not modified,
so CYGWIN build is still
disabled. Reason: although the
build succeeds with those changes,
many tests still fail.
Diffstat (limited to 'win/tclWinError.c')
| -rw-r--r-- | win/tclWinError.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win/tclWinError.c b/win/tclWinError.c index 05661a2..7cf0ca4 100644 --- a/win/tclWinError.c +++ b/win/tclWinError.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclWinError.c,v 1.7 2005/11/04 00:06:50 dkf Exp $ + * RCS: @(#) $Id: tclWinError.c,v 1.7.10.1 2010/01/31 23:51:37 nijtmans Exp $ */ #include "tclInt.h" @@ -354,7 +354,7 @@ static int wsaErrorTable[] = { void TclWinConvertError( - DWORD errCode) /* Win32 error code. */ + unsigned long errCode) /* Win32 error code. */ { if (errCode >= tableLen) { Tcl_SetErrno(EINVAL); @@ -381,7 +381,7 @@ TclWinConvertError( void TclWinConvertWSAError( - DWORD errCode) /* Win32 error code. */ + unsigned long errCode) /* Win32 error code. */ { if ((errCode >= WSAEWOULDBLOCK) && (errCode <= WSAEREMOTE)) { Tcl_SetErrno(wsaErrorTable[errCode - WSAEWOULDBLOCK]); |
