diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-03-29 12:19:02 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-03-29 12:19:02 (GMT) |
commit | 4c8c9f526780b8741580cf273b449f2e46d3cd9d (patch) | |
tree | 02294aea82f6d6673860adee68f55c602be4dcfe /generic/tclIO.c | |
parent | 491ea5e8b5064417e8238bf86ac995d2999a3fbd (diff) | |
parent | 33d523b6274e003bc520d9d0497e24e85de7fae0 (diff) | |
download | tcl-4c8c9f526780b8741580cf273b449f2e46d3cd9d.zip tcl-4c8c9f526780b8741580cf273b449f2e46d3cd9d.tar.gz tcl-4c8c9f526780b8741580cf273b449f2e46d3cd9d.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 6bf8451..a509ebf 100644 --- a/generic/tclIO.c +++ b/generic/tclIO.c @@ -9276,7 +9276,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); |