summaryrefslogtreecommitdiffstats
path: root/generic/tclInterp.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2004-05-18 10:13:51 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2004-05-18 10:13:51 (GMT)
commit2a4b329dc9a49a0f98ea43f460b586fd6bf6b694 (patch)
treed5d42ccc70776080798de3e88ee0d8b65535f750 /generic/tclInterp.c
parentf835d3db835f97e7ee1c56a02b85fa333f227ea7 (diff)
downloadtcl-2a4b329dc9a49a0f98ea43f460b586fd6bf6b694.zip
tcl-2a4b329dc9a49a0f98ea43f460b586fd6bf6b694.tar.gz
tcl-2a4b329dc9a49a0f98ea43f460b586fd6bf6b694.tar.bz2
Stop a compiler warning.
Diffstat (limited to 'generic/tclInterp.c')
-rw-r--r--generic/tclInterp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclInterp.c b/generic/tclInterp.c
index 01a73d1..fef3568 100644
--- a/generic/tclInterp.c
+++ b/generic/tclInterp.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: tclInterp.c,v 1.29 2004/05/18 09:29:30 dkf Exp $
+ * RCS: @(#) $Id: tclInterp.c,v 1.30 2004/05/18 10:13:51 dkf Exp $
*/
#include "tclInt.h"
@@ -2794,6 +2794,7 @@ Tcl_LimitRemoveHandler(interp, type, handlerProc, clientData)
break;
default:
Tcl_Panic("unknown type of resource limit");
+ return;
}
for (; handlerPtr!=NULL ; handlerPtr=handlerPtr->nextPtr) {