Changeset 5a6cc679 in mainline for uspace/lib/usbvirt/src/ipc_dev.c
- Timestamp:
- 2018-01-31T02:21:24Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a0a9cc2
- Parents:
- 132ab5d1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbvirt/src/ipc_dev.c
r132ab5d1 r5a6cc679 81 81 ipc_callid_t iid, ipc_call_t *icall) 82 82 { 83 int rc;83 errno_t rc; 84 84 85 85 void *setup_packet = NULL; … … 137 137 { 138 138 size_t data_buffer_len = IPC_GET_ARG1(*icall); 139 int rc;139 errno_t rc; 140 140 141 141 void *setup_packet = NULL; … … 183 183 usb_endpoint_t endpoint = IPC_GET_ARG1(*icall); 184 184 185 int rc;185 errno_t rc; 186 186 187 187 size_t data_len = 0; … … 230 230 size_t data_buffer_size = 0; 231 231 232 int rc = async_data_write_accept(&data_buffer, false,232 errno_t rc = async_data_write_accept(&data_buffer, false, 233 233 1, 0, 0, &data_buffer_size); 234 234 if (rc != EOK) {
Note:
See TracChangeset
for help on using the changeset viewer.