diff options
| author | nijtmans <nijtmans> | 2010-01-10 22:58:39 (GMT) | 
|---|---|---|
| committer | nijtmans <nijtmans> | 2010-01-10 22:58:39 (GMT) | 
| commit | a81c8243240443b1ffe54faec5e49d7e5dba4ee6 (patch) | |
| tree | dbbc67aa5fc759bc2ea978873fb23e5c3a614329 /unix/tclUnixSock.c | |
| parent | 997d61c0f6049d4bc0dd57aefc84e5f7f12c4ac2 (diff) | |
| download | tcl-a81c8243240443b1ffe54faec5e49d7e5dba4ee6.zip tcl-a81c8243240443b1ffe54faec5e49d7e5dba4ee6.tar.gz tcl-a81c8243240443b1ffe54faec5e49d7e5dba4ee6.tar.bz2 | |
	* win/tclWinDde.c:      VC++ 6.0 doesn't have
	* win/tclWinReg.c       PDWORD_PTR
	* win/tclWinThrd.c:     Fix various minor gcc warnings.
	* win/tclWinTime.c
	* win/tclWinConsole.c   Put channel type definitions
	* win/tclWinChan.c      in static const memory
	* win/tclWinPipe.c
	* win/tclWinSerial.c
	* win/tclWinSock.c
	* generic/tclIOGT.c
	* generic/tclIORChan.c
	* generic/tclIORTrans.c
	* unix/tclUnixChan.c
	* unix/tclUnixPipe.c
	* unix/tclUnixSock.c
	* unix/configure        (regenerated with autoconf 2.59)
	* tests/info.test:      Make test independant from
	                        tcltest implementation.
Diffstat (limited to 'unix/tclUnixSock.c')
| -rw-r--r-- | unix/tclUnixSock.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/unix/tclUnixSock.c b/unix/tclUnixSock.c index 4ed2392..1c852ce 100644 --- a/unix/tclUnixSock.c +++ b/unix/tclUnixSock.c @@ -8,7 +8,7 @@   * See the file "license.terms" for information on usage and redistribution of   * this file, and for a DISCLAIMER OF ALL WARRANTIES.   * - * RCS: @(#) $Id: tclUnixSock.c,v 1.22 2009/06/15 16:24:45 rmax Exp $ + * RCS: @(#) $Id: tclUnixSock.c,v 1.23 2010/01/10 22:58:40 nijtmans Exp $   */  #include "tclInt.h" @@ -100,7 +100,7 @@ static int		WaitForConnect(TcpState *statePtr, int *errorCodePtr);   * based IO:   */ -static Tcl_ChannelType tcpChannelType = { +static const Tcl_ChannelType tcpChannelType = {      "tcp",			/* Type name. */      TCL_CHANNEL_VERSION_5,	/* v5 channel */      TcpCloseProc,		/* Close proc. */ @@ -117,7 +117,7 @@ static Tcl_ChannelType tcpChannelType = {      NULL,			/* handler proc. */      NULL,			/* wide seek proc. */      NULL,			/* thread action proc. */ -    NULL,			/* truncate proc. */ +    NULL			/* truncate proc. */  }; | 
