Changes in uspace/lib/c/generic/inet.c [25a179e:f9b2cb4c] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/inet.c
r25a179e rf9b2cb4c 58 58 return rc; 59 59 60 int retval;60 sysarg_t retval; 61 61 async_wait_for(req, &retval); 62 62 … … 141 141 } 142 142 143 int retval;143 sysarg_t retval; 144 144 async_wait_for(req, &retval); 145 145 146 return retval;146 return (int) retval; 147 147 } 148 148 … … 170 170 } 171 171 172 int retval;172 sysarg_t retval; 173 173 async_wait_for(req, &retval); 174 174 175 return retval;175 return (int) retval; 176 176 } 177 177
Note:
See TracChangeset
for help on using the changeset viewer.