From be16c14dcb780dabefa3ad0a8d768d0142e2d095 Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Mon, 19 May 2025 15:57:11 +0200 Subject: [BOX32][WRAPPER] This should fix RV64 and LA64 builds --- src/wrapped32/wrappeddbus.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/wrapped32/wrappeddbus.c b/src/wrapped32/wrappeddbus.c index 9f8bbd1b..42533865 100644 --- a/src/wrapped32/wrappeddbus.c +++ b/src/wrapped32/wrappeddbus.c @@ -442,7 +442,7 @@ EXPORT int my32_dbus_message_get_args(x64emu_t* emu, void* message, void* e, int array[idx*2+1] = (void*)(uintptr_t)type; ++idx; } - CONVERT_VALIST_32(array); + CREATE_SYSV_VALIST_32(array); uint32_t ret = my->dbus_message_get_args(message, e, arg, VARARGS_32); // fill back the pointers for strings if(nstr) { @@ -495,7 +495,7 @@ EXPORT int my32_dbus_message_append_args(x64emu_t* emu, void* message, int arg, array[idx*2+1] = (void*)(uintptr_t)type; ++idx; } - CONVERT_VALIST_32(array); + CREATE_SYSV_VALIST_32(array); return my->dbus_message_append_args(message, arg, VARARGS_32); } EXPORT int my32_dbus_message_append_args_valist(x64emu_t* emu, void* message, int arg, ptr_t* b) __attribute__((alias("my32_dbus_message_append_args"))); -- cgit 1.4.1