diff options
author | das <das> | 2006-12-19 04:35:19 (GMT) |
---|---|---|
committer | das <das> | 2006-12-19 04:35:19 (GMT) |
commit | 021ed85823b1ff89bf759905a46d700de9744b6b (patch) | |
tree | 5c6a6bf0f9736ac3e1742e00135447f39c6e699b | |
parent | 46de14e2d17b49378a6d8319a786f520aa14e6d4 (diff) | |
download | tcl-021ed85823b1ff89bf759905a46d700de9744b6b.zip tcl-021ed85823b1ff89bf759905a46d700de9744b6b.tar.gz tcl-021ed85823b1ff89bf759905a46d700de9744b6b.tar.bz2 |
* unix/tclUnixThrd.c (TclpInetNtoa): fix for 64 bit.
-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 aecfcbe..b95e8f7 100644 --- a/unix/tclUnixThrd.c +++ b/unix/tclUnixThrd.c @@ -20,7 +20,7 @@ #include "pthread.h" typedef struct ThreadSpecificData { - char nabuf[17]; + char nabuf[16]; } ThreadSpecificData; static Tcl_ThreadDataKey dataKey; |