summaryrefslogtreecommitdiffstats
path: root/generic/tclBasic.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2025-04-18 09:22:14 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2025-04-18 09:22:14 (GMT)
commitf70603d910b1bb7c56458c12a97c0bf59472fe79 (patch)
tree6473da9489b2ef45e076cdd4a6711d1e0ef93dc6 /generic/tclBasic.c
parent7add1b667d2f8b5d5c914b4b4a0676548cc528e8 (diff)
downloadtcl-f70603d910b1bb7c56458c12a97c0bf59472fe79.zip
tcl-f70603d910b1bb7c56458c12a97c0bf59472fe79.tar.gz
tcl-f70603d910b1bb7c56458c12a97c0bf59472fe79.tar.bz2
Many more (harmless) -Wconversion fixes, mainly for the regexp engine
Diffstat (limited to 'generic/tclBasic.c')
-rw-r--r--generic/tclBasic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c
index 243009b..a146083 100644
--- a/generic/tclBasic.c
+++ b/generic/tclBasic.c
@@ -6105,7 +6105,7 @@ TclEvalObjEx(
* evaluation of the script. Supported values
* are TCL_EVAL_GLOBAL and TCL_EVAL_DIRECT. */
const CmdFrame *invoker, /* Frame of the command doing the eval. */
- int word) /* Index of the word which is in objPtr. */
+ int word) /* Index of the word which is in objPtr. */
{
int result = TCL_OK;
NRE_callback *rootPtr = TOP_CB(interp);