summaryrefslogtreecommitdiffstats
path: root/generic/tclProc.c
diff options
context:
space:
mode:
authordgp@users.sourceforge.net <dgp>2006-05-15 16:07:04 (GMT)
committerdgp@users.sourceforge.net <dgp>2006-05-15 16:07:04 (GMT)
commit0e15077d27d949cccb79a7166836be097e4441cd (patch)
tree986b68a90ca21032cef3dc940956732eebe28b18 /generic/tclProc.c
parent0ddb55ae4bf19f02aff8f014414fd1d689e7dde6 (diff)
downloadtcl-0e15077d27d949cccb79a7166836be097e4441cd.zip
tcl-0e15077d27d949cccb79a7166836be097e4441cd.tar.gz
tcl-0e15077d27d949cccb79a7166836be097e4441cd.tar.bz2
Silence compiler warning.
Diffstat (limited to 'generic/tclProc.c')
-rw-r--r--generic/tclProc.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/generic/tclProc.c b/generic/tclProc.c
index 61653c9..aae5008 100644
--- a/generic/tclProc.c
+++ b/generic/tclProc.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: tclProc.c,v 1.44.2.4 2006/05/13 17:17:11 dgp Exp $
+ * RCS: @(#) $Id: tclProc.c,v 1.44.2.5 2006/05/15 16:07:04 dgp Exp $
*/
#include "tclInt.h"
@@ -1257,7 +1257,8 @@ ProcCompileProc(interp, procPtr, bodyPtr, nsPtr, description,
new->iPtr = procPtr->iPtr;
new->refCount = 1;
- token = (Tcl_Command) new->cmdPtr = procPtr->cmdPtr;
+ new->cmdPtr = procPtr->cmdPtr;
+ token = (Tcl_Command) new->cmdPtr;
new->bodyPtr = Tcl_DuplicateObj(bodyPtr);
bodyPtr = new->bodyPtr;
Tcl_IncrRefCount(bodyPtr);