Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 3252 → Rev 3238

/trunk/uspace/lib/libc/generic/vfs/vfs.c
105,8 → 105,7
 
static int device_get_handle(char *name, dev_handle_t *handle)
{
int phone = ipc_connect_me_to(PHONE_NS, SERVICE_DEVMAP, DEVMAP_CLIENT,
0);
int phone = ipc_connect_me_to(PHONE_NS, SERVICE_DEVMAP, DEVMAP_CLIENT, 0);
if (phone < 0)
return phone;
224,8 → 223,7
futex_up(&vfs_phone_futex);
free(pa);
 
if (rc != EOK)
return (int) rc;
if (rc != EOK) return (int) rc;
return (int) IPC_GET_ARG1(answer);
}