summaryrefslogtreecommitdiffstats
path: root/generic/tclExecute.c
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2007-05-17 13:45:27 (GMT)
committerdgp <dgp@users.sourceforge.net>2007-05-17 13:45:27 (GMT)
commit236ba37a303671d6a3c75177016c755bf1003c3c (patch)
tree7ed74543ff89d9cf476ad45c598541c75c761eb4 /generic/tclExecute.c
parentbf92473c733080bf950ba0655e97593f87cca16e (diff)
downloadtcl-236ba37a303671d6a3c75177016c755bf1003c3c.zip
tcl-236ba37a303671d6a3c75177016c755bf1003c3c.tar.gz
tcl-236ba37a303671d6a3c75177016c755bf1003c3c.tar.bz2
suppress compiler warnings about values computed and not used
Diffstat (limited to 'generic/tclExecute.c')
-rw-r--r--generic/tclExecute.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclExecute.c b/generic/tclExecute.c
index 35bac19..c1f6a3a 100644
--- a/generic/tclExecute.c
+++ b/generic/tclExecute.c
@@ -12,7 +12,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclExecute.c,v 1.284 2007/05/17 12:05:18 dkf Exp $
+ * RCS: @(#) $Id: tclExecute.c,v 1.285 2007/05/17 13:45:27 dgp Exp $
*/
#include "tclInt.h"
@@ -1476,7 +1476,7 @@ TclExecuteByteCode(
#endif
goto checkForCatch;
} else {
- POP_OBJECT();
+ (void) POP_OBJECT();
goto abnormalReturn;
}
@@ -1715,7 +1715,7 @@ TclExecuteByteCode(
result = TCL_ERROR;
goto checkForCatch;
}
- POP_OBJECT();
+ (void) POP_OBJECT();
/*
* Make sure there is enough room in the stack to expand this list