Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/vfs/vfs_ipc.c

    r6ad454f rd2c8533  
    4141        bool desc = IPC_GET_ARG3(*request);
    4242       
    43         int outfd = -1;
    44         int rc = vfs_op_clone(oldfd, newfd, desc, &outfd);
    45         async_answer_1(rid, rc, outfd);
     43        int ret = vfs_op_clone(oldfd, newfd, desc);
     44        async_answer_0(rid, ret);
    4645}
    4746
     
    280279{
    281280        bool high_fd = IPC_GET_ARG1(*request);
    282         int fd = -1;
    283         int rc = vfs_op_wait_handle(high_fd, &fd);
    284         async_answer_1(rid, rc, fd);
     281        int fd = vfs_op_wait_handle(high_fd);
     282        async_answer_1(rid, EOK, fd);
    285283}
    286284
Note: See TracChangeset for help on using the changeset viewer.