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

@ -737,7 +737,7 @@ fhandler_tty_slave::read (void *ptr, size_t& len)
if (totalread > 0)
break;
set_sig_errno (EINTR);
(ssize_t) len = -1;
len = (size_t) -1;
return;
}