Skip to content

Commit

Permalink
Fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
mohanson committed Sep 10, 2024
1 parent 352a826 commit d007d6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ckb_syscalls.h
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ int ckb_load_block_extension(void* addr, uint64_t* len, size_t offset,

int ckb_inherited_fds(uint64_t* fds, size_t* length) {
volatile size_t l = *length;
int ret = syscall(SYS_ckb_inherited_fds, fd, &l, 0, 0, 0, 0);
int ret = syscall(SYS_ckb_inherited_fds, fds, &l, 0, 0, 0, 0);
*length = l;
return ret;
}
Expand Down

0 comments on commit d007d6e

Please sign in to comment.