Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/async.c

    r569a51a r071a1ddb  
    23982398        }
    23992399       
    2400         cap_handle_t phone;
    2401         int rc = ipc_connect_kbox(id, &phone);
    2402         if (rc != EOK) {
    2403                 errno = rc;
     2400        int phone = ipc_connect_kbox(id);
     2401        if (phone < 0) {
     2402                errno = phone;
    24042403                free(sess);
    24052404                return NULL;
Note: See TracChangeset for help on using the changeset viewer.