Changeset 50ad3f3 in mainline for uspace/srv/locsrv/locsrv.c
- Timestamp:
- 2012-06-01T19:17:07Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1b054a6f
- Parents:
- b16e77d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/locsrv/locsrv.c
rb16e77d r50ad3f3 390 390 */ 391 391 list_initialize(&server->services); 392 393 392 link_initialize(&server->servers); 394 393 … … 1490 1489 1491 1490 /* Register location service at naming service */ 1492 if (service_register(SERVICE_LOC) != EOK) 1493 return -1; 1491 int rc = service_register(SERVICE_LOC); 1492 if (rc != EOK) 1493 return rc; 1494 1494 1495 1495 printf("%s: Accepting connections\n", NAME);
Note:
See TracChangeset
for help on using the changeset viewer.