Fixed a stupid typo, thanks to Bill Hayden for pointing this out :-)

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6910 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2004-03-05 23:55:19 +00:00
parent 28d047182f
commit 89ea3ca9d6
+1 -1
View File
@@ -718,7 +718,7 @@ port_buffer_size_etc(port_id id, uint32 flags, bigtime_t timeout)
// somebody deleted the port
return B_BAD_PORT_ID;
}
if (status == B_TIMED_OUT || B_WOULD_BLOCK)
if (status == B_TIMED_OUT || status == B_WOULD_BLOCK)
return status;
state = disable_interrupts();