Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 3250 → Rev 3249

/trunk/uspace/srv/fs/tmpfs/tmpfs_dump.c
39,7 → 39,6
#include "tmpfs.h"
#include "../../vfs/vfs.h"
#include <ipc/ipc.h>
#include <async.h>
#include <errno.h>
#include <stdlib.h>
#include <string.h>
85,8 → 84,9
if (*bufpos == *buflen) {
ipcarg_t retval;
int rc = async_req_2_1(phone, RD_READ_BLOCK,
*pos / BLOCK_SIZE, BLOCK_SIZE, &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;