Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 3091 → Rev 3087

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