Fix warning 'conversion to ‘long unsigned int’ from ‘WriteResult’ may change the sign of the result [-Wsign-conversion]'.

Bug: https://bugs.freedesktop.org/show_bug.cgi?id=89284
Reviewed-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
This commit is contained in:
Ralf Habacker 2015-03-03 14:15:51 +01:00
parent 72549f316f
commit 6588c65708

View file

@ -80,18 +80,21 @@ tool_write_all (int fd,
while (size > bytes_written)
{
WriteResult this_time = write (fd, p, size - bytes_written);
WriteResult res = write (fd, p, size - bytes_written);
if (this_time < 0)
if (res < 0)
{
if (errno == EINTR)
continue;
else
return FALSE;
}
p += this_time;
bytes_written += this_time;
else
{
size_t this_time = (size_t) res;
p += this_time;
bytes_written += this_time;
}
}
return TRUE;