Changeset 102f641 in mainline for uspace/lib/c/generic/task.c


Ignore:
Timestamp:
2019-09-02T19:01:50Z (6 years ago)
Author:
Matthieu Riolo <matthieu.riolo@…>
Children:
25697163
Parents:
241f1985
Message:

Correcting syntax according to ccheck

File:
1 edited

Legend:

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

    r241f1985 r102f641  
    115115        async_exch_t *exch = taskman_exchange_begin();
    116116        if (exch == NULL)
    117                         return EIO;
     117                return EIO;
    118118
    119119        wait->aid = async_send_3(exch, TASKMAN_WAIT, LOWER32(id), UPPER32(id),
     
    388388                if (wait->flags & TASK_WAIT_RETVAL && retval)
    389389                        *retval = ipc_get_arg2(&wait->result);
    390                
    391390        }
    392391
     
    440439        errno_t rc = async_req_2_0(exch, TASKMAN_RETVAL, val, wait_for_exit);
    441440        taskman_exchange_end(exch);
    442        
     441
    443442        return rc;
    444443}
Note: See TracChangeset for help on using the changeset viewer.