Check for fd failure properly

This commit is contained in:
Scott Anderson 2017-10-02 22:01:09 +13:00
parent 6cfe47d1d8
commit 9ec9edc40d
1 changed files with 1 additions and 1 deletions

View File

@ -242,7 +242,7 @@ static size_t explicit_find_gpus(struct wlr_session *session,
}
ret[i] = open_if_kms(session, ptr);
if (ret[i] <= 0) {
if (ret[i] < 0) {
wlr_log(L_ERROR, "Unable to open %s as DRM device", ptr);
} else {
++i;