diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-12-15 21:27:14 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-12-15 21:27:14 (GMT) |
| commit | aecff8b1e70292e4c7e77d9200b086f7af4cfa33 (patch) | |
| tree | 1846c2c9fdb64ee2d2495c9ebbb45728710dbcc2 /unix/tclUnixInit.c | |
| parent | 67f6f5cdb190d17b5178a5d5c8d090440bbc1005 (diff) | |
| download | tcl-aecff8b1e70292e4c7e77d9200b086f7af4cfa33.zip tcl-aecff8b1e70292e4c7e77d9200b086f7af4cfa33.tar.gz tcl-aecff8b1e70292e4c7e77d9200b086f7af4cfa33.tar.bz2 | |
Revert a few more (int -> size_t) transitions, which could effect extensions (such as Itcl 3.4) which use internal Tcl header files. Better wait until 9.0 for this.
What we _can_ do is change some (internal) fields to 'unsigned': that doubles the epoch range without further danger. Thanks, Don, for pointing this out!
Diffstat (limited to 'unix/tclUnixInit.c')
| -rw-r--r-- | unix/tclUnixInit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tclUnixInit.c b/unix/tclUnixInit.c index feeffa6..e57136d 100644 --- a/unix/tclUnixInit.c +++ b/unix/tclUnixInit.c @@ -453,7 +453,7 @@ TclpInitPlatform(void) void TclpInitLibraryPath( char **valuePtr, - size_t *lengthPtr, + unsigned int *lengthPtr, Tcl_Encoding *encodingPtr) { #define LIBRARY_SIZE 32 |
