From cd11d099dd7f15827a06ad59c9144530163d1047 Mon Sep 17 00:00:00 2001 From: Miguel Sofer Date: Mon, 10 Oct 2005 15:51:01 +0000 Subject: * generic/tclExecute.c: fixing errors in last commit. --- ChangeLog | 4 ++++ generic/tclExecute.c | 4 +++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index ad5813c..f19bd5f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2005-10-10 Miguel Sofer + + * generic/tclExecute.c: fixing errors in last commit. + 2005-10-09 Miguel Sofer * generic/tclBasic.c: diff --git a/generic/tclExecute.c b/generic/tclExecute.c index 096873f..d9021d4 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.203 2005/10/09 20:05:18 msofer Exp $ + * RCS: @(#) $Id: tclExecute.c,v 1.204 2005/10/10 15:51:01 msofer Exp $ */ #include "tclInt.h" @@ -3823,6 +3823,7 @@ TclExecuteByteCode(interp, codePtr) case TCL_NUMBER_BIG: /* TODO: const correctness ? */ zero = (mp_cmp_d((mp_int *)ptr1, 0) == MP_GT); + break; default: /* Unused, here to silence compiler warning. */ zero = 0; @@ -4111,6 +4112,7 @@ TclExecuteByteCode(interp, codePtr) break; case INST_BITXOR: lResult = l1 ^ l2; + break; default: /* Unused, here to silence compiler warning. */ lResult = 0; -- cgit v0.12