diff options
author | nijtmans <nijtmans@noemail.net> | 2010-01-10 22:58:39 (GMT) |
---|---|---|
committer | nijtmans <nijtmans@noemail.net> | 2010-01-10 22:58:39 (GMT) |
commit | 5c4dd24f9879581c530428c9b155ec5b402a4784 (patch) | |
tree | dbbc67aa5fc759bc2ea978873fb23e5c3a614329 /unix/tclUnixPipe.c | |
parent | 270dfa77448b76583b8327e32916dbd29f81dd80 (diff) | |
download | tcl-5c4dd24f9879581c530428c9b155ec5b402a4784.zip tcl-5c4dd24f9879581c530428c9b155ec5b402a4784.tar.gz tcl-5c4dd24f9879581c530428c9b155ec5b402a4784.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.
FossilOrigin-Name: ab999800966a0b666e1f1f44036476255eedbc43
Diffstat (limited to 'unix/tclUnixPipe.c')
-rw-r--r-- | unix/tclUnixPipe.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/unix/tclUnixPipe.c b/unix/tclUnixPipe.c index 208b6d9..21a0153 100644 --- a/unix/tclUnixPipe.c +++ b/unix/tclUnixPipe.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclUnixPipe.c,v 1.50 2009/12/16 23:26:00 nijtmans Exp $ + * RCS: @(#) $Id: tclUnixPipe.c,v 1.51 2010/01/10 22:58:41 nijtmans Exp $ */ #include "tclInt.h" @@ -68,7 +68,7 @@ static int SetupStdFile(TclFile file, int type); * I/O: */ -static Tcl_ChannelType pipeChannelType = { +static const Tcl_ChannelType pipeChannelType = { "pipe", /* Type name. */ TCL_CHANNEL_VERSION_5, /* v5 channel */ TCL_CLOSE2PROC, /* Close proc. */ @@ -85,7 +85,7 @@ static Tcl_ChannelType pipeChannelType = { NULL, /* handler proc. */ NULL, /* wide seek proc */ NULL, /* thread action proc */ - NULL, /* truncation */ + NULL /* truncation */ }; /* |