Changeset 3115355 in mainline for uspace/srv/devmap/devmap.c
- Timestamp:
- 2007-12-31T10:14:38Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 27d293a
- Parents:
- badbd888
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/devmap/devmap.c
rbadbd888 r3115355 203 203 * Get driver name 204 204 */ 205 if (!ipc_data_write_receive(&callid, NULL,&name_size)) {205 if (!ipc_data_write_receive(&callid, &name_size)) { 206 206 printf("Unexpected request.\n"); 207 207 free(driver); … … 369 369 370 370 /* Get device name */ 371 if (!ipc_data_write_receive(&callid, NULL,&size)) {371 if (!ipc_data_write_receive(&callid, &size)) { 372 372 free(device); 373 373 printf("Cannot read device name.\n"); … … 490 490 * read the name itself until the buffer is allocated). 491 491 */ 492 if (!ipc_data_write_receive(&callid, NULL,&name_size)) {492 if (!ipc_data_write_receive(&callid, &name_size)) { 493 493 ipc_answer_0(callid, EREFUSED); 494 494 ipc_answer_0(iid, EREFUSED);
Note:
See TracChangeset
for help on using the changeset viewer.