summaryrefslogtreecommitdiffstats
path: root/generic/tclIO.h
diff options
context:
space:
mode:
authornijtmans <nijtmans@noemail.net>2009-02-27 23:03:40 (GMT)
committernijtmans <nijtmans@noemail.net>2009-02-27 23:03:40 (GMT)
commit838130b04943599c15afeec2735f93bf0e484a9f (patch)
treec82e642d20ce6b9934198c2c1059f1892d825390 /generic/tclIO.h
parent4d9f677c8ad022324d66a4708b7e0a6f3e688ab5 (diff)
downloadtcl-838130b04943599c15afeec2735f93bf0e484a9f.zip
tcl-838130b04943599c15afeec2735f93bf0e484a9f.tar.gz
tcl-838130b04943599c15afeec2735f93bf0e484a9f.tar.bz2
[Bug 218977] Tcl_DbCkfree needs a return value
don't use CONST84/CONST86 in internal header files FossilOrigin-Name: 23ff81a854460293945f523c9ac352f6ab8aedc7
Diffstat (limited to 'generic/tclIO.h')
-rw-r--r--generic/tclIO.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclIO.h b/generic/tclIO.h
index fa78769..5f330f5 100644
--- a/generic/tclIO.h
+++ b/generic/tclIO.h
@@ -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: tclIO.h,v 1.15 2008/12/18 23:48:39 andreas_kupries Exp $
+ * RCS: @(#) $Id: tclIO.h,v 1.16 2009/02/27 23:03:42 nijtmans Exp $
*/
/*
@@ -132,7 +132,7 @@ typedef struct Channel {
struct ChannelState *state; /* Split out state information */
ClientData instanceData; /* Instance-specific data provided by creator
* of channel. */
- CONST86 Tcl_ChannelType *typePtr; /* Pointer to channel type structure. */
+ const Tcl_ChannelType *typePtr; /* Pointer to channel type structure. */
struct Channel *downChanPtr;/* Refers to channel this one was stacked
* upon. This reference is NULL for normal
* channels. See Tcl_StackChannel. */