Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 3535 → Rev 3534

/branches/dynload/uspace/srv/vfs/vfs_ops.c
153,7 → 153,7
return;
}
/* Allocate buffer for the mount point data being received. */
char *buf;
uint8_t *buf;
buf = malloc(size + 1);
if (!buf) {
ipc_answer_0(callid, ENOMEM);
/branches/dynload/uspace/srv/vfs/vfs.c
49,6 → 49,8
 
#define NAME "vfs"
 
#define dprintf(...) printf(__VA_ARGS__)
 
static void vfs_connection(ipc_callid_t iid, ipc_call_t *icall)
{
bool keep_on_going = 1;