diff options
| author | griffin <briang42@easystreet.net> | 2023-04-26 03:41:57 (GMT) |
|---|---|---|
| committer | griffin <briang42@easystreet.net> | 2023-04-26 03:41:57 (GMT) |
| commit | 3aaf8c054455ae5ad096a31922d26477397c8ed7 (patch) | |
| tree | da3b4149db099f21abca6f4443b7a054dc2a3f54 /unix/tclUnixFile.c | |
| parent | da6df4addedb2a495440a76f50733ff7b968cffc (diff) | |
| parent | 025b74f7c7add01c5ca6654b03c29241c0845def (diff) | |
| download | tcl-3aaf8c054455ae5ad096a31922d26477397c8ed7.zip tcl-3aaf8c054455ae5ad096a31922d26477397c8ed7.tar.gz tcl-3aaf8c054455ae5ad096a31922d26477397c8ed7.tar.bz2 | |
merge trunk, address some 32-bit issues.
Diffstat (limited to 'unix/tclUnixFile.c')
| -rw-r--r-- | unix/tclUnixFile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclUnixFile.c b/unix/tclUnixFile.c index 50ee64d..41985ab 100644 --- a/unix/tclUnixFile.c +++ b/unix/tclUnixFile.c @@ -946,7 +946,7 @@ TclpObjLink( if (linkAction & TCL_CREATE_SYMBOLIC_LINK) { Tcl_DString ds; Tcl_Obj *transPtr; - size_t length; + Tcl_Size length; /* * Now we don't want to link to the absolute, normalized path. @@ -1087,7 +1087,7 @@ TclNativeCreateNativeRep( const char *str; Tcl_DString ds; Tcl_Obj *validPathPtr; - size_t len; + Tcl_Size len; if (TclFSCwdIsNative()) { /* |
