Changeset 84a1a54 in mainline for uspace/srv/locsrv/locsrv.c
- Timestamp:
- 2018-01-04T20:47:53Z (7 years ago)
- Children:
- facacc71
- Parents:
- cde999a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/locsrv/locsrv.c
rcde999a r84a1a54 1532 1532 if (rc != EOK) { 1533 1533 printf("%s: Error while creating supplier port: %s\n", NAME, str_error(rc)); 1534 return rc;1534 return EXIT_RC(rc); 1535 1535 } 1536 1536 … … 1539 1539 if (rc != EOK) { 1540 1540 printf("%s: Error while creating consumer port: %s\n", NAME, str_error(rc)); 1541 return rc;1541 return EXIT_RC(rc); 1542 1542 } 1543 1543 … … 1549 1549 if (rc != EOK) { 1550 1550 printf("%s: Error while registering service: %s\n", NAME, str_error(rc)); 1551 return rc;1551 return EXIT_RC(rc); 1552 1552 } 1553 1553
Note:
See TracChangeset
for help on using the changeset viewer.