Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/socket/socket_client.c

    r7fb2ce3 rd510c0fe  
    541541        socket_ref              new_socket;
    542542        aid_t                   message_id;
    543         ipcarg_t                ipc_result;
    544         int                     result;
     543        int                             result;
    545544        ipc_call_t              answer;
    546545
     
    593592        ipc_data_read_start( socket->phone, cliaddr, * addrlen );
    594593        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 );
    597595        if( result > 0 ){
    598596                if( result != socket_id ){
     
    736734        socket_ref              socket;
    737735        aid_t                   message_id;
    738         ipcarg_t                ipc_result;
    739         int                     result;
     736        int                             result;
    740737        size_t                  fragments;
    741738        size_t *                lengths;
     
    796793                }
    797794        }
    798         async_wait_for( message_id, & ipc_result );
    799         result = (int) ipc_result;
     795        async_wait_for( message_id, ( ipcarg_t * ) & result );
    800796        // if successful
    801797        if( result == EOK ){
Note: See TracChangeset for help on using the changeset viewer.