Changes in uspace/lib/c/generic/inetping.c [25a179e:f9b2cb4c] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/inetping.c
r25a179e rf9b2cb4c 110 110 } 111 111 112 int retval;112 sysarg_t retval; 113 113 async_wait_for(req, &retval); 114 114 115 return retval;115 return (int) retval; 116 116 } 117 117 … … 136 136 async_exchange_end(exch); 137 137 138 int retval_local;138 sysarg_t retval_local; 139 139 async_wait_for(req_local, &retval_local); 140 140 141 141 if (retval_local != EOK) { 142 142 async_forget(req); 143 return retval_local;144 } 145 146 int retval;143 return (int) retval_local; 144 } 145 146 sysarg_t retval; 147 147 async_wait_for(req, &retval); 148 148 149 return retval;149 return (int) retval; 150 150 } 151 151
Note:
See TracChangeset
for help on using the changeset viewer.