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 | |
| 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')
| -rwxr-xr-x | src/wrapped32/wrappedlibc.c | 2 | ||||
| -rwxr-xr-x | src/wrapped32/wrappedlibdl.c | 4 |
2 files changed, 3 insertions, 3 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; diff --git a/src/wrapped32/wrappedlibdl.c b/src/wrapped32/wrappedlibdl.c index c3a79feb..6556f9a3 100755 --- a/src/wrapped32/wrappedlibdl.c +++ b/src/wrapped32/wrappedlibdl.c @@ -151,7 +151,7 @@ EXPORT int my32__dl_find_object(x64emu_t* emu, void* addr, my_dl_find_object_t* // if(!box32_isglibc234) setNeededLibs(lib, 1, "libc.so.6"); -void closeAllDLOpenned(); +void closeAllDLOpened(); #define PRE_INIT\ if(1) \ @@ -159,7 +159,7 @@ void closeAllDLOpenned(); else #define CUSTOM_FINI \ - closeAllDLOpenned(); + closeAllDLOpened(); // define all standard library functions #include "wrappedlib_init32.h" |