summaryrefslogtreecommitdiffstats
path: root/generic/tclFileName.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2025-03-30 08:41:50 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2025-03-30 08:41:50 (GMT)
commit254025c6d682cfde6e1cada371c419af7c60087b (patch)
tree80cef3a45304cecf6752d3c8c1d587ec3dc9974d /generic/tclFileName.c
parentb915f649c229620e5a17add0e25b85ee99c9c91d (diff)
downloadtcl-254025c6d682cfde6e1cada371c419af7c60087b.zip
tcl-254025c6d682cfde6e1cada371c419af7c60087b.tar.gz
tcl-254025c6d682cfde6e1cada371c419af7c60087b.tar.bz2
Fix some -Wconversion warningscore-conversion-warning
Diffstat (limited to 'generic/tclFileName.c')
-rw-r--r--generic/tclFileName.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclFileName.c b/generic/tclFileName.c
index c92951a..068a041 100644
--- a/generic/tclFileName.c
+++ b/generic/tclFileName.c
@@ -1966,8 +1966,8 @@ DoGlob(
Tcl_GlobTypeData *types) /* List object containing list of acceptable
* types. May be NULL. */
{
- int baseLength, quoted;
- int result = TCL_OK;
+ Tcl_Size baseLength;
+ int quoted, result = TCL_OK;
char *name, *p, *openBrace, *closeBrace, *firstSpecialChar;
Tcl_Obj *joinedPtr;