about summary refs log tree commit diff stats
path: root/src/wrapped32/wrappedlibc.c
diff options
context:
space:
mode:
authorolegos2 <74909582+olegos2@users.noreply.github.com>2024-12-28 21:06:51 +0500
committerGitHub <noreply@github.com>2024-12-28 17:06:51 +0100
commitbb0a445a6b57091fe5b878b09668d25edcb1e7ee (patch)
treea53672a36d16e92250ee6b004f4d542e0b92958b /src/wrapped32/wrappedlibc.c
parent7157803c03560d9835b9eea72e4991a64458e44a (diff)
downloadbox64-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-xsrc/wrapped32/wrappedlibc.c2
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;