summaryrefslogtreecommitdiffstats
path: root/generic/tclTrace.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2022-02-23 14:04:36 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2022-02-23 14:04:36 (GMT)
commitac7d65a8345455832dbb0ba384437e2953e23bdd (patch)
tree767ef825ec8f8e1b0a69e379a6226c1926eacc88 /generic/tclTrace.c
parent6d23f73e8aba5d1c6ed987c139b2b719be84a254 (diff)
downloadtcl-ac7d65a8345455832dbb0ba384437e2953e23bdd.zip
tcl-ac7d65a8345455832dbb0ba384437e2953e23bdd.tar.gz
tcl-ac7d65a8345455832dbb0ba384437e2953e23bdd.tar.bz2
Some more int -> size_t in internal API
Diffstat (limited to 'generic/tclTrace.c')
-rw-r--r--generic/tclTrace.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclTrace.c b/generic/tclTrace.c
index 1794723..bc4cbfc 100644
--- a/generic/tclTrace.c
+++ b/generic/tclTrace.c
@@ -1423,7 +1423,7 @@ TclCheckExecutionTraces(
Command *cmdPtr, /* Points to command's Command struct. */
int code, /* The current result code. */
int traceFlags, /* Current tracing situation. */
- int objc, /* Number of arguments for the command. */
+ size_t objc, /* Number of arguments for the command. */
Tcl_Obj *const objv[]) /* Pointers to Tcl_Obj of each argument. */
{
Interp *iPtr = (Interp *) interp;
@@ -1529,7 +1529,7 @@ TclCheckInterpTraces(
Command *cmdPtr, /* Points to command's Command struct. */
int code, /* The current result code. */
int traceFlags, /* Current tracing situation. */
- int objc, /* Number of arguments for the command. */
+ size_t objc, /* Number of arguments for the command. */
Tcl_Obj *const objv[]) /* Pointers to Tcl_Obj of each argument. */
{
Interp *iPtr = (Interp *) interp;