Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2003-09-07 06:22:58 +0400
committerChristopher Faylor <me@cgf.cx>2003-09-07 06:22:58 +0400
commit6cce721b15c6ac75e7d6ae86a4354aa02bcf14d8 (patch)
treea7538e4b61839375dabaee0d9647d30befe04ac6 /winsup/cygwin/fhandler_windows.cc
parent46645f9c6efc9009d7bada23d7ae5f03e6ed8bd3 (diff)
Remove left coercion throughout.
Diffstat (limited to 'winsup/cygwin/fhandler_windows.cc')
-rw-r--r--winsup/cygwin/fhandler_windows.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/fhandler_windows.cc b/winsup/cygwin/fhandler_windows.cc
index b9892882f..f200f482a 100644
--- a/winsup/cygwin/fhandler_windows.cc
+++ b/winsup/cygwin/fhandler_windows.cc
@@ -86,7 +86,7 @@ fhandler_windows::read (void *buf, size_t& len)
if (len < sizeof (MSG))
{
set_errno (EINVAL);
- (ssize_t) len = -1;
+ len = (size_t) -1;
return;
}