Changeset b7fd2a0 in mainline for uspace/srv/volsrv/volsrv.c
- Timestamp:
- 2018-01-13T03:10:29Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a53ed3a
- Parents:
- 36f0738
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/volsrv/volsrv.c
r36f0738 rb7fd2a0 54 54 static void vol_client_conn(ipc_callid_t, ipc_call_t *, void *); 55 55 56 static int vol_init(void)57 { 58 int rc;56 static errno_t vol_init(void) 57 { 58 errno_t rc; 59 59 log_msg(LOG_DEFAULT, LVL_DEBUG, "vol_init()"); 60 60 … … 90 90 size_t size; 91 91 size_t act_size; 92 int rc;92 errno_t rc; 93 93 94 94 if (!async_data_read_receive(&callid, &size)) { … … 112 112 } 113 113 114 int retval = async_data_read_finalize(callid, id_buf, size);114 errno_t retval = async_data_read_finalize(callid, id_buf, size); 115 115 free(id_buf); 116 116 … … 121 121 { 122 122 service_id_t sid; 123 int rc;123 errno_t rc; 124 124 125 125 sid = IPC_GET_ARG1(*icall); … … 139 139 vol_part_t *part; 140 140 vol_part_info_t pinfo; 141 int rc;141 errno_t rc; 142 142 143 143 sid = IPC_GET_ARG1(*icall); … … 185 185 service_id_t sid; 186 186 vol_part_t *part; 187 int rc;187 errno_t rc; 188 188 189 189 sid = IPC_GET_ARG1(*icall); … … 209 209 vol_fstype_t fstype; 210 210 vol_label_supp_t vlsupp; 211 int rc;211 errno_t rc; 212 212 213 213 fstype = IPC_GET_ARG1(*icall); … … 249 249 vol_fstype_t fstype; 250 250 char *label; 251 int rc;251 errno_t rc; 252 252 253 253 sid = IPC_GET_ARG1(*icall); … … 327 327 int main(int argc, char *argv[]) 328 328 { 329 int rc;329 errno_t rc; 330 330 331 331 printf("%s: Volume service\n", NAME);
Note:
See TracChangeset
for help on using the changeset viewer.