mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-05-03 10:07:59 +02:00
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:
parent
72549f316f
commit
6588c65708
1 changed files with 8 additions and 5 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue