summaryrefslogtreecommitdiffstats
path: root/generic/tclProc.c
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2003-05-08 00:44:29 (GMT)
committerdgp <dgp@users.sourceforge.net>2003-05-08 00:44:29 (GMT)
commit7eadd008a5eb03994833d4c34bb9d9fe5fccfa65 (patch)
treef1e2798e79124c0507efba59c79836743933674c /generic/tclProc.c
parentf1a81f6b8e6a013c45dbaa74b1087d56e2d5153c (diff)
downloadtcl-7eadd008a5eb03994833d4c34bb9d9fe5fccfa65.zip
tcl-7eadd008a5eb03994833d4c34bb9d9fe5fccfa65.tar.gz
tcl-7eadd008a5eb03994833d4c34bb9d9fe5fccfa65.tar.bz2
stop compiler warnings about unused variables
Diffstat (limited to 'generic/tclProc.c')
-rw-r--r--generic/tclProc.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/generic/tclProc.c b/generic/tclProc.c
index 9f8d1e4..92fba97 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.45 2003/05/05 20:54:40 dgp Exp $
+ * RCS: @(#) $Id: tclProc.c,v 1.46 2003/05/08 00:44:29 dgp Exp $
*/
#include "tclInt.h"
@@ -901,7 +901,6 @@ TclObjInterpProc(clientData, interp, objc, objv)
* procedure. */
Tcl_Obj *CONST objv[]; /* Argument value objects. */
{
- Interp *iPtr = (Interp *) interp;
register Proc *procPtr = (Proc *) clientData;
Namespace *nsPtr = procPtr->cmdPtr->nsPtr;
CallFrame frame;
@@ -1428,7 +1427,6 @@ TclUpdateReturnInfo(iPtr)
* exception is being processed. */
{
int level, code = TCL_RETURN;
- char *errorCode;
Tcl_Obj *valuePtr;
Tcl_DictObjGet(NULL, iPtr->returnOpts, iPtr->returnLevelKey, &valuePtr);