diff options
author | dgp <dgp@users.sourceforge.net> | 2007-05-17 13:45:27 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2007-05-17 13:45:27 (GMT) |
commit | 236ba37a303671d6a3c75177016c755bf1003c3c (patch) | |
tree | 7ed74543ff89d9cf476ad45c598541c75c761eb4 | |
parent | bf92473c733080bf950ba0655e97593f87cca16e (diff) | |
download | tcl-236ba37a303671d6a3c75177016c755bf1003c3c.zip tcl-236ba37a303671d6a3c75177016c755bf1003c3c.tar.gz tcl-236ba37a303671d6a3c75177016c755bf1003c3c.tar.bz2 |
suppress compiler warnings about values computed and not used
-rw-r--r-- | generic/tclExecute.c | 6 |
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 |