diff options
author | dgp <dgp@users.sourceforge.net> | 2006-08-29 19:11:28 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2006-08-29 19:11:28 (GMT) |
commit | aaeda0935747a6d69ef9df77065f278a62d67d28 (patch) | |
tree | e2877686f1b89bea384ae1e84176b9e1f6f31e12 /generic | |
parent | 169f6437b92da10d3758963ba69dc4431a22f85c (diff) | |
download | tcl-aaeda0935747a6d69ef9df77065f278a62d67d28.zip tcl-aaeda0935747a6d69ef9df77065f278a62d67d28.tar.gz tcl-aaeda0935747a6d69ef9df77065f278a62d67d28.tar.bz2 |
silence compiler warn
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclParseExpr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclParseExpr.c b/generic/tclParseExpr.c index 1e7d41f..93f0597 100644 --- a/generic/tclParseExpr.c +++ b/generic/tclParseExpr.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: tclParseExpr.c,v 1.42 2006/08/29 19:09:48 dgp Exp $ + * RCS: @(#) $Id: tclParseExpr.c,v 1.43 2006/08/29 19:11:28 dgp Exp $ */ #define OLD_EXPR_PARSER 0 @@ -2404,7 +2404,7 @@ Tcl_ParseExpr( break; case BINARY: { - ExprNode *otherPtr; + ExprNode *otherPtr = NULL; if ((nodePtr->lexeme == CLOSE_PAREN) && (lastNodePtr->lexeme == OPEN_PAREN)) { |