diff options
| author | xctan <xctan@cirno.icu> | 2023-04-21 18:12:25 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-21 12:12:25 +0200 |
| commit | f7d23a4b9f2efa3c92e5fd643f6c753fe8c7f7bd (patch) | |
| tree | 540abb88b0efbaf89288e583e844fc97652d3077 | |
| parent | 2dec48f8af1a1455f8ee3a802c82087bbba70973 (diff) | |
| download | box64-f7d23a4b9f2efa3c92e5fd643f6c753fe8c7f7bd.tar.gz box64-f7d23a4b9f2efa3c92e5fd643f6c753fe8c7f7bd.zip | |
[WRAPPER] Fix my___vsnprintf_chk (#722)
| -rwxr-xr-x | src/wrapped/wrappedlibc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wrapped/wrappedlibc.c b/src/wrapped/wrappedlibc.c index 2d950aed..6f617fca 100755 --- a/src/wrapped/wrappedlibc.c +++ b/src/wrapped/wrappedlibc.c @@ -922,7 +922,7 @@ EXPORT int my_vsnprintf(x64emu_t* emu, void* buff, size_t s, void * fmt, x64_va_ return r; } EXPORT int my___vsnprintf(x64emu_t* emu, void* buff, size_t s, void * fmt, x64_va_list_t b) __attribute__((alias("my_vsnprintf"))); -EXPORT int my___vsnprintf_chk(x64emu_t* emu, void* buff, size_t s, int flags, size_t slen, int blah, void * fmt, x64_va_list_t b) { +EXPORT int my___vsnprintf_chk(x64emu_t* emu, void* buff, size_t s, int flags, size_t slen, void * fmt, x64_va_list_t b) { (void)emu; #ifdef CONVERT_VALIST CONVERT_VALIST(b); |