diff options
| author | das <das> | 2001-11-23 01:26:52 (GMT) |
|---|---|---|
| committer | das <das> | 2001-11-23 01:26:52 (GMT) |
| commit | 9b7131a28b171f7ab71c69cb3b094f96155090a3 (patch) | |
| tree | 725fbc934e8cfe62511b965b22c0069a3e157e67 /mac/tclMacChan.c | |
| parent | f8c4da107b399eaadb5e58b5b98c07d74ec8867c (diff) | |
| download | tcl-9b7131a28b171f7ab71c69cb3b094f96155090a3.zip tcl-9b7131a28b171f7ab71c69cb3b094f96155090a3.tar.gz tcl-9b7131a28b171f7ab71c69cb3b094f96155090a3.tar.bz2 | |
** upport to 8.4 of mac code changes for 8.3.3 & various new
** changes for 8.4, some already backported to 8.3.4 (patch #435658)
see ChangeLog for details
Diffstat (limited to 'mac/tclMacChan.c')
| -rw-r--r-- | mac/tclMacChan.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mac/tclMacChan.c b/mac/tclMacChan.c index e728c7f..fc5e914 100644 --- a/mac/tclMacChan.c +++ b/mac/tclMacChan.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: tclMacChan.c,v 1.7 2001/08/30 08:53:15 vincentdarley Exp $ + * RCS: @(#) $Id: tclMacChan.c,v 1.8 2001/11/23 01:27:21 das Exp $ */ #include "tclInt.h" @@ -136,7 +136,7 @@ static int StdReady _ANSI_ARGS_((ClientData instanceData, static Tcl_ChannelType consoleChannelType = { "file", /* Type name. */ - StdIOBlockMode, /* Set blocking/nonblocking mode.*/ + (Tcl_ChannelTypeVersion)StdIOBlockMode, /* Set blocking/nonblocking mode.*/ StdIOClose, /* Close proc. */ StdIOInput, /* Input proc. */ StdIOOutput, /* Output proc. */ @@ -153,7 +153,7 @@ static Tcl_ChannelType consoleChannelType = { static Tcl_ChannelType fileChannelType = { "file", /* Type name. */ - FileBlockMode, /* Set blocking or + (Tcl_ChannelTypeVersion)FileBlockMode, /* Set blocking or * non-blocking mode.*/ FileClose, /* Close proc. */ FileInput, /* Input proc. */ |
