diff options
| author | donal.k.fellows@manchester.ac.uk <dkf> | 2005-10-19 14:12:35 (GMT) |
|---|---|---|
| committer | donal.k.fellows@manchester.ac.uk <dkf> | 2005-10-19 14:12:35 (GMT) |
| commit | 067b78dc2790c8f4573b782877ead1d5ba284060 (patch) | |
| tree | 775abe6026bfea8e10cd69a2f38e72cf9ba143c0 | |
| parent | e3abcc14ada8f8d92d39b86716f2e4ca0517038b (diff) | |
| download | tcl-067b78dc2790c8f4573b782877ead1d5ba284060.zip tcl-067b78dc2790c8f4573b782877ead1d5ba284060.tar.gz tcl-067b78dc2790c8f4573b782877ead1d5ba284060.tar.bz2 | |
Silence a warning
| -rw-r--r-- | generic/tclIORChan.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclIORChan.c b/generic/tclIORChan.c index d141e4a..d665dba 100644 --- a/generic/tclIORChan.c +++ b/generic/tclIORChan.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: tclIORChan.c,v 1.9 2005/10/19 14:11:27 dkf Exp $ + * RCS: @(#) $Id: tclIORChan.c,v 1.10 2005/10/19 14:12:35 dkf Exp $ */ #include <tclInt.h> @@ -2097,7 +2097,7 @@ ForwardOpToOwnerThread( evPtr->resultPtr = resultPtr; evPtr->op = op; evPtr->rcPtr = rcPtr; - evPtr->param = param; + evPtr->param = (ForwardParam *) param; resultPtr->src = Tcl_GetCurrentThread(); resultPtr->dst = dst; |
