summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixFCmd.c
diff options
context:
space:
mode:
authorapnadkarni <apnmbx-wits@yahoo.com>2023-04-21 06:16:53 (GMT)
committerapnadkarni <apnmbx-wits@yahoo.com>2023-04-21 06:16:53 (GMT)
commitc7f27e3c8788c57a0e58d4b31140a4c4652a422f (patch)
treeb75c4e99c0169e29c90064020a7e6b69e081544c /unix/tclUnixFCmd.c
parente86259d193d2c7ad6628755161cc75a706e194cb (diff)
downloadtcl-c7f27e3c8788c57a0e58d4b31140a4c4652a422f.zip
tcl-c7f27e3c8788c57a0e58d4b31140a4c4652a422f.tar.gz
tcl-c7f27e3c8788c57a0e58d4b31140a4c4652a422f.tar.bz2
Fix warnings generated on disable8api builds
Diffstat (limited to 'unix/tclUnixFCmd.c')
-rw-r--r--unix/tclUnixFCmd.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/unix/tclUnixFCmd.c b/unix/tclUnixFCmd.c
index 8109202..b260cf4 100644
--- a/unix/tclUnixFCmd.c
+++ b/unix/tclUnixFCmd.c
@@ -1504,7 +1504,7 @@ SetGroupAttribute(
Tcl_DString ds;
struct group *groupPtr = NULL;
const char *string;
- size_t length;
+ Tcl_Size length;
string = Tcl_GetStringFromObj(attributePtr, &length);
@@ -1571,7 +1571,7 @@ SetOwnerAttribute(
Tcl_DString ds;
struct passwd *pwPtr = NULL;
const char *string;
- size_t length;
+ Tcl_Size length;
string = Tcl_GetStringFromObj(attributePtr, &length);
@@ -1947,7 +1947,7 @@ TclpObjNormalizePath(
{
const char *currentPathEndPosition;
char cur;
- size_t pathLen;
+ Tcl_Size pathLen;
const char *path = Tcl_GetStringFromObj(pathPtr, &pathLen);
Tcl_DString ds;
const char *nativePath;
@@ -2171,7 +2171,7 @@ TclUnixOpenTemporaryFile(
Tcl_DString templ, tmp;
const char *string;
int fd;
- size_t length;
+ Tcl_Size length;
/*
* We should also check against making more then TMP_MAX of these.