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

@ -118,7 +118,7 @@ fhandler_dev_random::read (void *ptr, size_t& len)
if (!ptr)
{
set_errno (EINVAL);
(ssize_t) len = -1;
len = (size_t) -1;
return;
}
@ -135,7 +135,7 @@ fhandler_dev_random::read (void *ptr, size_t& len)
}
__seterrno ();
(ssize_t) len = -1;
len = (size_t) -1;
}
_off64_t