diff options
| author | olegos2 <74909582+olegos2@users.noreply.github.com> | 2024-12-28 21:06:51 +0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-28 17:06:51 +0100 |
| commit | bb0a445a6b57091fe5b878b09668d25edcb1e7ee (patch) | |
| tree | a53672a36d16e92250ee6b004f4d542e0b92958b /src/wrapped32/wrappedlibc.c | |
| parent | 7157803c03560d9835b9eea72e4991a64458e44a (diff) | |
| download | box64-bb0a445a6b57091fe5b878b09668d25edcb1e7ee.tar.gz box64-bb0a445a6b57091fe5b878b09668d25edcb1e7ee.zip | |
Spelling/typo fixes in code and documentation updates (#2223)
* Fix typo DLOpenned->DLOpened * Fix a typo in comments: versionned->versioned * Fix a typo in comment: cleanning->cleaning * Update COMPILE.md and USAGE.md * A few more typos in comments
Diffstat (limited to 'src/wrapped32/wrappedlibc.c')
| -rwxr-xr-x | src/wrapped32/wrappedlibc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wrapped32/wrappedlibc.c b/src/wrapped32/wrappedlibc.c index 7ddf8545..464d5af7 100755 --- a/src/wrapped32/wrappedlibc.c +++ b/src/wrapped32/wrappedlibc.c @@ -931,7 +931,7 @@ EXPORT int my32___vsprintf_chk(x64emu_t* emu, void* buff, int flags, size_t len, return r; } -EXPORT int my32_vfscanf(x64emu_t* emu, void* stream, void* fmt, void* b) // probably uneeded to do a GOM, a simple wrap should enough +EXPORT int my32_vfscanf(x64emu_t* emu, void* stream, void* fmt, void* b) // probably unnecessary to do a GOM, a simple wrap should be enough { int n = myStackAlignScanf32((const char*)fmt, (uint32_t*)b, emu->scratch, N_SCRATCH); PREPARE_VALIST_32; |