diff options
author | patthoyts <patthoyts@users.sourceforge.net> | 2006-10-06 14:04:48 (GMT) |
---|---|---|
committer | patthoyts <patthoyts@users.sourceforge.net> | 2006-10-06 14:04:48 (GMT) |
commit | 45d55000a997d99d141b01fb4f92f2160b117eea (patch) | |
tree | 7c3421d3bb3293ed1f690f048c59cb90795a2072 /win/nmakehlp.c | |
parent | 51d46f220f118765bf2638251ddca90a0eb02baf (diff) | |
download | tcl-45d55000a997d99d141b01fb4f92f2160b117eea.zip tcl-45d55000a997d99d141b01fb4f92f2160b117eea.tar.gz tcl-45d55000a997d99d141b01fb4f92f2160b117eea.tar.bz2 |
Remove RTCc flag
Diffstat (limited to 'win/nmakehlp.c')
-rw-r--r-- | win/nmakehlp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/nmakehlp.c b/win/nmakehlp.c index 9d5df8e..5f31314 100644 --- a/win/nmakehlp.c +++ b/win/nmakehlp.c @@ -10,7 +10,7 @@ * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * * ---------------------------------------------------------------------------- - * RCS: @(#) $Id: nmakehlp.c,v 1.1.4.2 2006/09/26 21:40:37 patthoyts Exp $ + * RCS: @(#) $Id: nmakehlp.c,v 1.1.4.3 2006/10/06 14:04:49 patthoyts Exp $ * ---------------------------------------------------------------------------- */ @@ -407,7 +407,7 @@ ReadFromPipe( again: if (lastBuf - pi->buffer + CHUNK > STATICBUFFERSIZE) { CloseHandle(pi->pipe); - return -1; + return (DWORD)-1; } ok = ReadFile(pi->pipe, lastBuf, CHUNK, &dwRead, 0L); if (!ok || dwRead == 0) { |