Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/inet.c

    r25a179e rf9b2cb4c  
    5858                return rc;
    5959       
    60         int retval;
     60        sysarg_t retval;
    6161        async_wait_for(req, &retval);
    6262       
     
    141141        }
    142142       
    143         int retval;
     143        sysarg_t retval;
    144144        async_wait_for(req, &retval);
    145145       
    146         return retval;
     146        return (int) retval;
    147147}
    148148
     
    170170        }
    171171       
    172         int retval;
     172        sysarg_t retval;
    173173        async_wait_for(req, &retval);
    174174       
    175         return retval;
     175        return (int) retval;
    176176}
    177177
Note: See TracChangeset for help on using the changeset viewer.