Ignore:
File:
1 edited

Legend:

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

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