Changeset 3b47db6 in mainline for uspace/srv/loader/main.c


Ignore:
Timestamp:
2018-01-04T20:50:53Z (6 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Children:
58e4d85
Parents:
c81d4f1
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 20:47:53)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 20:50:53)
Message:

(optional) Remove EXIT_RC().

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/loader/main.c

    rc81d4f1 r3b47db6  
    397397        errno_t rc = ns_intro(id);
    398398        if (rc != EOK)
    399                 return EXIT_RC(rc);
     399                return rc;
    400400       
    401401        /* Create port */
     
    403403        rc = async_create_port(INTERFACE_LOADER, ldr_connection, NULL, &port);
    404404        if (rc != EOK)
    405                 return EXIT_RC(rc);
     405                return rc;
    406406       
    407407        /* Register at naming service. */
    408408        rc = service_register(SERVICE_LOADER);
    409409        if (rc != EOK)
    410                 return EXIT_RC(rc);
     410                return rc;
    411411       
    412412        async_manager();
Note: See TracChangeset for help on using the changeset viewer.