Remove left coercion throughout.

This commit is contained in:
Christopher Faylor
2003-09-07 02:22:58 +00:00
parent 46645f9c6e
commit 6cce721b15
8 changed files with 19 additions and 15 deletions

View File

@ -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;
}