Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/ipc/ops/concttome.c

    r09d01f2 rb7fd2a0  
    4343{
    4444        cap_handle_t phone_handle;
    45         int rc = phone_alloc(TASK, &phone_handle);
     45        errno_t rc = phone_alloc(TASK, &phone_handle);
    4646        IPC_SET_ARG5(call->data, (rc == EOK) ? phone_handle : -1);
    4747        return 0;
    4848}
    4949
    50 static int answer_cleanup(call_t *answer, ipc_data_t *olddata)
     50static errno_t answer_cleanup(call_t *answer, ipc_data_t *olddata)
    5151{
    5252        cap_handle_t phone_handle = (cap_handle_t) IPC_GET_ARG5(*olddata);
     
    5858}
    5959
    60 static int answer_preprocess(call_t *answer, ipc_data_t *olddata)
     60static errno_t answer_preprocess(call_t *answer, ipc_data_t *olddata)
    6161{
    6262        cap_handle_t phone_handle = (cap_handle_t) IPC_GET_ARG5(*olddata);
Note: See TracChangeset for help on using the changeset viewer.