ecore-drm: fix error check of _device_flags_set function

Summary: the function return -1 if it's failed so checking for ! is
incorrect. We should check if the return is less than zero.

@fix

Reviewers: gwanglim, devilhorns

Reviewed By: devilhorns

Subscribers: cedric

Differential Revision: https://phab.enlightenment.org/D1682
This commit is contained in:
Seunghun Lee 2014-11-21 09:18:29 -05:00 committed by Chris Michael
parent 9c26b572d0
commit b2b81f2cd4
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ _cb_device_opened(void *data, const Eldbus_Message *msg, Eldbus_Pending *pending
goto cleanup;
}
if (!(fd = _device_flags_set(fd)))
if ((fd = _device_flags_set(fd)) < 0)
{
ERR("\tCould not set fd flags");
goto release;