summaryrefslogtreecommitdiffstats
path: root/generic/tclIORTrans.c
diff options
context:
space:
mode:
authornijtmans <nijtmans@noemail.net>2010-01-10 22:58:39 (GMT)
committernijtmans <nijtmans@noemail.net>2010-01-10 22:58:39 (GMT)
commit5c4dd24f9879581c530428c9b155ec5b402a4784 (patch)
treedbbc67aa5fc759bc2ea978873fb23e5c3a614329 /generic/tclIORTrans.c
parent270dfa77448b76583b8327e32916dbd29f81dd80 (diff)
downloadtcl-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 'generic/tclIORTrans.c')
-rw-r--r--generic/tclIORTrans.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclIORTrans.c b/generic/tclIORTrans.c
index e22b356..4dfe78f 100644
--- a/generic/tclIORTrans.c
+++ b/generic/tclIORTrans.c
@@ -15,7 +15,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclIORTrans.c,v 1.10 2009/11/18 22:21:06 nijtmans Exp $
+ * RCS: @(#) $Id: tclIORTrans.c,v 1.11 2010/01/10 22:58:40 nijtmans Exp $
*/
#include <tclInt.h>
@@ -63,7 +63,7 @@ static int ReflectNotify(ClientData clientData, int mask);
* The C layer channel type/driver definition used by the reflection.
*/
-static Tcl_ChannelType tclRTransformType = {
+static const Tcl_ChannelType tclRTransformType = {
"tclrtransform", /* Type name. */
TCL_CHANNEL_VERSION_5, /* v5 channel. */
ReflectClose, /* Close channel, clean instance data. */
@@ -81,7 +81,7 @@ static Tcl_ChannelType tclRTransformType = {
ReflectNotify, /* Handle events. */
ReflectSeekWide, /* Move access point (64 bit). */
NULL, /* thread action */
- NULL, /* truncate */
+ NULL /* truncate */
};
/*