summaryrefslogtreecommitdiffstats
path: root/generic/tclParse.c
diff options
context:
space:
mode:
authorstanton <stanton>1998-12-02 01:59:35 (GMT)
committerstanton <stanton>1998-12-02 01:59:35 (GMT)
commit60ff70bcf83ea90d8bd0fb2b84c2c55719ac0acd (patch)
tree8dcead312ab45b82530ede33e1eeb1c1138274cc /generic/tclParse.c
parent9ff5ba8793b856483a4c082a773dd36fbef9715f (diff)
downloadtcl-60ff70bcf83ea90d8bd0fb2b84c2c55719ac0acd.zip
tcl-60ff70bcf83ea90d8bd0fb2b84c2c55719ac0acd.tar.gz
tcl-60ff70bcf83ea90d8bd0fb2b84c2c55719ac0acd.tar.bz2
fixed minor type conflict
Diffstat (limited to 'generic/tclParse.c')
-rw-r--r--generic/tclParse.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclParse.c b/generic/tclParse.c
index 7e8f9f4..1c162b3 100644
--- a/generic/tclParse.c
+++ b/generic/tclParse.c
@@ -13,7 +13,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclParse.c,v 1.1.2.5 1998/12/02 01:46:07 stanton Exp $
+ * RCS: @(#) $Id: tclParse.c,v 1.1.2.6 1998/12/02 01:59:35 stanton Exp $
*/
#include "tclInt.h"
@@ -968,7 +968,7 @@ Tcl_EvalObjv(interp, objc, objv, flags)
Interp *iPtr = (Interp *)interp;
Trace *tracePtr;
Tcl_DString cmdBuf;
- char cmdString[] = "";
+ char *cmdString = "";
int cmdLen = 0;
int code = TCL_OK;