summaryrefslogtreecommitdiffstats
path: root/generic/tclStringObj.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2025-04-17 14:47:13 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2025-04-17 14:47:13 (GMT)
commit7add1b667d2f8b5d5c914b4b4a0676548cc528e8 (patch)
tree9c23fced7d752bf3841c88e97625905e343409a5 /generic/tclStringObj.c
parentace71ee517ffeb23cd22fb6066bb51037105fa43 (diff)
downloadtcl-7add1b667d2f8b5d5c914b4b4a0676548cc528e8.zip
tcl-7add1b667d2f8b5d5c914b4b4a0676548cc528e8.tar.gz
tcl-7add1b667d2f8b5d5c914b4b4a0676548cc528e8.tar.bz2
Another round of -Wconversion warning fixes, see [03cff7a777]
Diffstat (limited to 'generic/tclStringObj.c')
-rw-r--r--generic/tclStringObj.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclStringObj.c b/generic/tclStringObj.c
index 72206d6..da5ca6c 100644
--- a/generic/tclStringObj.c
+++ b/generic/tclStringObj.c
@@ -803,7 +803,7 @@ TclGetRange(
Tcl_Size first, /* First index of the range. */
Tcl_Size last) /* Last index of the range. */
{
- Tcl_Obj *newObjPtr; /* The Tcl object to return that is the new
+ Tcl_Obj *newObjPtr; /* The Tcl object to return that is the new
* range. */
Tcl_Size length = 0;