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