Changeset 102f641 in mainline for uspace/srv/sysman/main.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/srv/sysman/main.c

    r241f1985 r102f641  
    8383
    8484/** Build hard coded configuration */
    85 static errno_t create_entry_configuration(void) {
     85static errno_t create_entry_configuration(void)
     86{
    8687        errno_t rc;
    8788        unit_t *mnt_initrd = NULL;
     
    108109        cfg_init->name           = str_dup(UNIT_CFG_INITRD);
    109110        CAST_CFG(cfg_init)->path = str_dup(INITRD_CFG_PATH);
    110        
     111
    111112        tgt_init = unit_create(UNIT_TARGET);
    112113        if (tgt_init == NULL) {
     
    115116        }
    116117        tgt_init->name = str_dup(TARGET_INIT);
    117        
    118118
    119119        /*
     
    160160        }
    161161        job_del_ref(&job);
    162        
     162
    163163        const char **target_name_ptr = arg;
    164164        prepare_and_run_job(target_name_ptr + 1);
Note: See TracChangeset for help on using the changeset viewer.