diff options
author | das <das> | 2006-12-19 04:35:09 (GMT) |
---|---|---|
committer | das <das> | 2006-12-19 04:35:09 (GMT) |
commit | c25f9ee39367bdfce525a1932e9d1430bb96660b (patch) | |
tree | 8b7f2b552259a83127d78c5841d98112f0c24686 /unix/tclUnixThrd.c | |
parent | 6478f6fa70a97483629a6e6382e817de23fe948d (diff) | |
download | tcl-c25f9ee39367bdfce525a1932e9d1430bb96660b.zip tcl-c25f9ee39367bdfce525a1932e9d1430bb96660b.tar.gz tcl-c25f9ee39367bdfce525a1932e9d1430bb96660b.tar.bz2 |
* unix/tclUnixThrd.c (TclpInetNtoa): fix for 64 bit.
Diffstat (limited to 'unix/tclUnixThrd.c')
-rw-r--r-- | unix/tclUnixThrd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tclUnixThrd.c b/unix/tclUnixThrd.c index 7fb692d..8fc8c63 100644 --- a/unix/tclUnixThrd.c +++ b/unix/tclUnixThrd.c @@ -19,7 +19,7 @@ #include "pthread.h" typedef struct ThreadSpecificData { - char nabuf[17]; + char nabuf[16]; } ThreadSpecificData; static Tcl_ThreadDataKey dataKey; |