"Fixed" the write_port_etc() call: it used a hardcoded 8 instead of B_RELATIVE_TIMEOUT (ts ts ts).

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6234 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2004-01-23 01:12:51 +00:00
parent 8b47303be4
commit b7d3f36edc

View File

@ -1785,7 +1785,7 @@ status_t BMessage::_send_(port_id port, int32 token, bool preferred,
status_t err;
do
{
err = write_port_etc(port, 'pjpp', pMem, size, 8, timeout);
err = write_port_etc(port, 'pjpp', pMem, size, B_RELATIVE_TIMEOUT, timeout);
} while (err == B_INTERRUPTED);
if (p)
{