Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 3090 → Rev 3091

/trunk/uspace/srv/fs/tmpfs/tmpfs_ops.c
272,8 → 272,10
}
if (*bufpos == *buflen) {
int retval;
int rc = ipc_call_sync_2_1(phone, RD_READ_BLOCK, *pos / BLOCK_SIZE, BLOCK_SIZE, (sysarg_t *) &retval);
ipcarg_t retval;
int rc = ipc_call_sync_2_1(phone, RD_READ_BLOCK,
*pos / BLOCK_SIZE, BLOCK_SIZE,
&retval);
if ((rc != EOK) || (retval != EOK))
return false;