Changeset 102f641 in mainline for uspace/lib/sysman/src


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

Location:
uspace/lib/sysman/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/sysman/src/broker.c

    r241f1985 r102f641  
    8686        async_forget(req);
    8787}
    88 
    89 
  • uspace/lib/sysman/src/ctl.c

    r241f1985 r102f641  
    8787        errno_t rc = async_req_2_0(exch, SYSMAN_CTL_UNIT_START, handle, flags);
    8888        sysman_exchange_end(exch);
    89        
     89
    9090        return rc;
    9191}
     
    9797        errno_t rc = async_req_2_0(exch, SYSMAN_CTL_UNIT_STOP, handle, flags);
    9898        sysman_exchange_end(exch);
    99        
     99
    100100        return rc;
    101101}
  • uspace/lib/sysman/src/sysman.c

    r241f1985 r102f641  
    3131#include <sysman/sysman.h>
    3232
    33 static async_sess_t *sysman_sess[SYSMAN_PORT_MAX_] = {NULL};
     33static async_sess_t *sysman_sess[SYSMAN_PORT_MAX_] = { NULL };
    3434
    3535async_exch_t *sysman_exchange_begin(sysman_interface_t iface)
     
    5151        async_exchange_end(exch);
    5252}
    53 
Note: See TracChangeset for help on using the changeset viewer.