Ignore:
File:
1 edited

Legend:

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

    r25a179e rf9b2cb4c  
    110110        }
    111111
    112         int retval;
     112        sysarg_t retval;
    113113        async_wait_for(req, &retval);
    114114
    115         return retval;
     115        return (int) retval;
    116116}
    117117
     
    136136        async_exchange_end(exch);
    137137
    138         int retval_local;
     138        sysarg_t retval_local;
    139139        async_wait_for(req_local, &retval_local);
    140140
    141141        if (retval_local != EOK) {
    142142                async_forget(req);
    143                 return retval_local;
    144         }
    145 
    146         int retval;
     143                return (int) retval_local;
     144        }
     145
     146        sysarg_t retval;
    147147        async_wait_for(req, &retval);
    148148
    149         return retval;
     149        return (int) retval;
    150150}
    151151
Note: See TracChangeset for help on using the changeset viewer.