Changes in uspace/srv/net/socket/socket_client.c [7fb2ce3:d510c0fe] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/socket/socket_client.c
r7fb2ce3 rd510c0fe 541 541 socket_ref new_socket; 542 542 aid_t message_id; 543 ipcarg_t ipc_result; 544 int result; 543 int result; 545 544 ipc_call_t answer; 546 545 … … 593 592 ipc_data_read_start( socket->phone, cliaddr, * addrlen ); 594 593 fibril_rwlock_write_unlock( & socket_globals.lock ); 595 async_wait_for( message_id, & ipc_result ); 596 result = (int) ipc_result; 594 async_wait_for( message_id, ( ipcarg_t * ) & result ); 597 595 if( result > 0 ){ 598 596 if( result != socket_id ){ … … 736 734 socket_ref socket; 737 735 aid_t message_id; 738 ipcarg_t ipc_result; 739 int result; 736 int result; 740 737 size_t fragments; 741 738 size_t * lengths; … … 796 793 } 797 794 } 798 async_wait_for( message_id, & ipc_result ); 799 result = (int) ipc_result; 795 async_wait_for( message_id, ( ipcarg_t * ) & result ); 800 796 // if successful 801 797 if( result == EOK ){
Note:
See TracChangeset
for help on using the changeset viewer.