Changeset 132ab5d1 in mainline for uspace/srv/volsrv/volsrv.c
- Timestamp:
- 2018-01-30T03:20:45Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5a6cc679
- Parents:
- 8bfb163 (diff), 6a5d05b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
uspace/srv/volsrv/volsrv.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/volsrv/volsrv.c
r8bfb163 r132ab5d1 36 36 #include <async.h> 37 37 #include <errno.h> 38 #include <str_error.h> 38 39 #include <io/log.h> 39 40 #include <ipc/services.h> … … 70 71 rc = loc_server_register(NAME); 71 72 if (rc != EOK) { 72 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed registering server (%d).", rc);73 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed registering server: %s.", str_error(rc)); 73 74 return EEXIST; 74 75 } … … 77 78 rc = loc_service_register(SERVICE_NAME_VOLSRV, &sid); 78 79 if (rc != EOK) { 79 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed registering service (%d).", rc);80 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed registering service: %s.", str_error(rc)); 80 81 return EEXIST; 81 82 } … … 111 112 } 112 113 113 sysarg_t retval = async_data_read_finalize(callid, id_buf, size);114 int retval = async_data_read_finalize(callid, id_buf, size); 114 115 free(id_buf); 115 116
Note:
See TracChangeset
for help on using the changeset viewer.
