diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2018-06-29 20:28:54 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2018-06-29 20:28:54 (GMT) |
commit | 94741577ee73184dd04e947e9a87bc9227c4ebab (patch) | |
tree | fd68415e372f7051c71d212b2bd274ed2c5c5b2c /generic/tclCompile.c | |
parent | 709f9278ffe0739b8bc246247ff82868eff8b467 (diff) | |
download | tcl-94741577ee73184dd04e947e9a87bc9227c4ebab.zip tcl-94741577ee73184dd04e947e9a87bc9227c4ebab.tar.gz tcl-94741577ee73184dd04e947e9a87bc9227c4ebab.tar.bz2 |
Another round of size_t'isms, this time also for Tcl_DString
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 a73060c..4683aa0 100644 --- a/generic/tclCompile.c +++ b/generic/tclCompile.c @@ -1303,7 +1303,7 @@ CompileSubstObj( if (objPtr->typePtr != &substCodeType) { CompileEnv compEnv; const char *bytes = TclGetString(objPtr); - int numBytes = objPtr->length; + size_t numBytes = objPtr->length; /* TODO: Check for more TIP 280 */ TclInitCompileEnv(interp, &compEnv, bytes, numBytes, NULL, 0); |