diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2024-11-17 11:45:00 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2024-11-17 11:45:00 +0100 |
| commit | 5f0cbcf26d398b4a7e3ae6604fa16a3a75932159 (patch) | |
| tree | 66cca57863763a60c5797e81a9abc27127895789 /src | |
| parent | ffc875c2d6b3262e472cfb2dfb6682eb9b21c96e (diff) | |
| download | box64-5f0cbcf26d398b4a7e3ae6604fa16a3a75932159.tar.gz box64-5f0cbcf26d398b4a7e3ae6604fa16a3a75932159.zip | |
[WRAPPER] Fixed an isue with __iso99_swcanf wrapped function
Diffstat (limited to 'src')
| -rw-r--r-- | 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 eb1911bd..20ba4e24 100644 --- a/src/wrapped/wrappedlibc.c +++ b/src/wrapped/wrappedlibc.c @@ -1035,7 +1035,7 @@ EXPORT int my___isoc99_sscanf(x64emu_t* emu, void* stream, void* fmt, uint64_t* EXPORT int my___isoc99_swscanf(x64emu_t* emu, void* stream, void* fmt, uint64_t* b) { - myStackAlignScanf(emu, (const char*)fmt, b, emu->scratch, 2); + myStackAlignScanfW(emu, (const char*)fmt, b, emu->scratch, 2); PREPARE_VALIST; return vswscanf(stream, fmt, VARARGS); |