From bb0a445a6b57091fe5b878b09668d25edcb1e7ee Mon Sep 17 00:00:00 2001 From: olegos2 <74909582+olegos2@users.noreply.github.com> Date: Sat, 28 Dec 2024 21:06:51 +0500 Subject: 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 --- tests32/test21.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests32') diff --git a/tests32/test21.c b/tests32/test21.c index cc003ffc..332ed3a3 100644 --- a/tests32/test21.c +++ b/tests32/test21.c @@ -24,7 +24,7 @@ int main(int argc, char **argv) { void* v1 = dlopen("test21_v1.so", RTLD_NOW); void* v2 = dlopen("test21_v2.so", RTLD_NOW); if(!v1 || !v2) { - printf("Error openning libs: v1=%p, v2=%p\n", v1, v2); + printf("Error openning libs: v1=%p, v2=%p\n", v1, v2); // typo: opening exit(-1); } iFv_t returnVersion = (iFv_t)dlsym(v2, "returnVersion"); -- cgit 1.4.1