diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-11-29 11:10:10 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-11-29 11:10:10 (GMT) |
commit | b91af81bc4ee0138c07c96e938c4878e0a8c06d9 (patch) | |
tree | 305755843bb78eab3a9fa68148ec46585a11f31b /generic/tclExecute.c | |
parent | 7b4af51ed2c67661856796cc6669052b86bda825 (diff) | |
download | tcl-b91af81bc4ee0138c07c96e938c4878e0a8c06d9.zip tcl-b91af81bc4ee0138c07c96e938c4878e0a8c06d9.tar.gz tcl-b91af81bc4ee0138c07c96e938c4878e0a8c06d9.tar.bz2 |
more internal use of size_t (in stead of int)
Diffstat (limited to 'generic/tclExecute.c')
-rw-r--r-- | generic/tclExecute.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclExecute.c b/generic/tclExecute.c index 1f78ead..074b1d5 100644 --- a/generic/tclExecute.c +++ b/generic/tclExecute.c @@ -9459,9 +9459,9 @@ PrintByteCodeInfo( Proc *procPtr = codePtr->procPtr; Interp *iPtr = (Interp *) *codePtr->interpHandle; - fprintf(stdout, "\nExecuting ByteCode 0x%p, refCt %u, epoch %u, interp 0x%p (epoch %u)\n", - codePtr, codePtr->refCount, codePtr->compileEpoch, iPtr, - iPtr->compileEpoch); + fprintf(stdout, "\nExecuting ByteCode 0x%p, refCt %" TCL_LL_MODIFIER "u, epoch %" TCL_LL_MODIFIER "u, interp 0x%p (epoch %" TCL_LL_MODIFIER "u)\n", + codePtr, (Tcl_WideInt)codePtr->refCount, (Tcl_WideInt)codePtr->compileEpoch, iPtr, + (Tcl_WideInt)iPtr->compileEpoch); fprintf(stdout, " Source: "); TclPrintSource(stdout, codePtr->source, 60); |