You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-libs/libx86/files/libx86-1.1-c99.patch

18 lines
426 B

https://bugs.gentoo.org/880429
https://src.fedoraproject.org/rpms/libx86/blob/rawhide/f/libx86-c99-2.patch
--- a/thunk.c
+++ b/thunk.c
@@ -157,10 +157,10 @@ int LRMI_init() {
X86EMU_pioFuncs pioFuncs = {
(&x_inb),
(&x_inw),
- (&x_inl),
+ ((x86emuu32 (*)(X86EMU_pioAddr)) &x_inl),
(&x_outb),
(&x_outw),
- (&x_outl)
+ ((void (*)(X86EMU_pioAddr, x86emuu32)) &x_outl)
};
X86EMU_setupPioFuncs(&pioFuncs);