diff options
author | dgp <dgp@users.sourceforge.net> | 2013-10-21 14:35:02 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2013-10-21 14:35:02 (GMT) |
commit | 30cd4b442c047d01653b1c217b0364eb6b5c8101 (patch) | |
tree | fb8499dbd90a12c867f323ee83b7e10fedb35204 /generic/tclCompile.c | |
parent | ff83c9993b14e1a40c0003bbda71dbbf2fe79a98 (diff) | |
download | tcl-30cd4b442c047d01653b1c217b0364eb6b5c8101.zip tcl-30cd4b442c047d01653b1c217b0364eb6b5c8101.tar.gz tcl-30cd4b442c047d01653b1c217b0364eb6b5c8101.tar.bz2 |
silence compiler warnings
Diffstat (limited to 'generic/tclCompile.c')
-rw-r--r-- | generic/tclCompile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclCompile.c b/generic/tclCompile.c index ae6e56c..a150fc2 100644 --- a/generic/tclCompile.c +++ b/generic/tclCompile.c @@ -3930,7 +3930,7 @@ TclEmitInvoke( ExceptionRange *rangePtr; ExceptionAux *auxBreakPtr, *auxContinuePtr; int arg1, arg2, wordCount = 0, expandCount = 0; - int loopRange, breakRange, continueRange; + int loopRange = 0, breakRange = 0, continueRange = 0; /* * Parse the arguments. |