diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-03-29 12:16:28 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-03-29 12:16:28 (GMT) |
commit | 33d523b6274e003bc520d9d0497e24e85de7fae0 (patch) | |
tree | 1b89496b0aa7f00c62593edd50a6a0ad82684689 /generic/tclIO.c | |
parent | c755d23a508df80984dc1755ea1c96af87f27425 (diff) | |
download | tcl-33d523b6274e003bc520d9d0497e24e85de7fae0.zip tcl-33d523b6274e003bc520d9d0497e24e85de7fae0.tar.gz tcl-33d523b6274e003bc520d9d0497e24e85de7fae0.tar.bz2 |
In comments and documentation, distinguish between __int64 (a Microsoft 64-bit integer type) and int64_t (C99 equivalent)
Diffstat (limited to 'generic/tclIO.c')
-rw-r--r-- | generic/tclIO.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclIO.c b/generic/tclIO.c index ffd2430..64501fd 100644 --- a/generic/tclIO.c +++ b/generic/tclIO.c @@ -9317,7 +9317,7 @@ MBWrite( * then the calculations involving extra must be made wide too. * * Noted with Win32/MSVC debug build treating the warning (possible of - * data in int64 to int conversion) as error. + * data in __int64 to int conversion) as error. */ bufPtr = AllocChannelBuffer(extra); |