diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-06-17 04:41:57 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-06-17 04:41:57 (GMT) |
commit | 259d5037ca4b4dc37c6e6b01d6d2ffee9c249d52 (patch) | |
tree | 8ae31cc972e9a8c5a9f7b81077780db27919192f /generic/tclInt.h | |
parent | be5d1b00c4af601c562154ca455e2c0e9801d8c1 (diff) | |
download | tcl-259d5037ca4b4dc37c6e6b01d6d2ffee9c249d52.zip tcl-259d5037ca4b4dc37c6e6b01d6d2ffee9c249d52.tar.gz tcl-259d5037ca4b4dc37c6e6b01d6d2ffee9c249d52.tar.bz2 |
On 32-bit platforms, 12 characters for version is enough, on 64-bit platforms it will be aligned to 16 characters anyway.
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index 1cf0337..2d3a248 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -3833,7 +3833,7 @@ MODULE_SCOPE int TclCompileAssembleCmd(Tcl_Interp *interp, /* Used internally in stub library. */ typedef struct { - char version[16]; + char version[12]; ClientData data; } TclStubInfoType; |