Changeset 7f880ee8 in mainline
- Timestamp:
- 2008-06-03T19:22:59Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- fadfaf8
- Parents:
- 78d0da8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/tmpfs/tmpfs_ops.c
r78d0da8 r7f880ee8 273 273 274 274 if (*bufpos == *buflen) { 275 int retval; 276 int rc = ipc_call_sync_2_1(phone, RD_READ_BLOCK, *pos / BLOCK_SIZE, BLOCK_SIZE, (sysarg_t *) &retval); 275 ipcarg_t retval; 276 int rc = ipc_call_sync_2_1(phone, RD_READ_BLOCK, 277 *pos / BLOCK_SIZE, BLOCK_SIZE, 278 &retval); 277 279 if ((rc != EOK) || (retval != EOK)) 278 280 return false;
Note:
See TracChangeset
for help on using the changeset viewer.