mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 07:47:35 +00:00
LibC: Make it compile on 64-bit
It won't actually work on 64-bit yet, but let's do our future selves a favor and make it compile.
This commit is contained in:
parent
8714f389f9
commit
eb08a0edd5
4 changed files with 15 additions and 15 deletions
|
@ -73,7 +73,7 @@ int futex(uint32_t* userspace_address, int futex_op, uint32_t value, const struc
|
|||
.userspace_address = userspace_address,
|
||||
.futex_op = futex_op,
|
||||
.val = value,
|
||||
.val2 = (uint32_t)timeout,
|
||||
.val2 = (FlatPtr)timeout,
|
||||
.userspace_address2 = userspace_address2,
|
||||
.val3 = value3
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue