From 8c875c79c3d03f4a48e8b14504ec761f0cc4fd3a Mon Sep 17 00:00:00 2001 From: Stefan Vigerske Date: Fri, 17 Oct 2025 16:49:36 +0200 Subject: [PATCH] fix typo --- src/blockmemshell/memory.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blockmemshell/memory.c b/src/blockmemshell/memory.c index b728a83194..7c31cc6a08 100644 --- a/src/blockmemshell/memory.c +++ b/src/blockmemshell/memory.c @@ -2118,7 +2118,7 @@ void BMSfreeBlockMemory_work( debugMessage("free %8llu bytes in %p [%s:%d]\n", (unsigned long long)size, *ptr, filename, line); - /* find correspoding chunk block */ + /* find corresponding chunk block */ assert( blkmem->chkmemhash != NULL ); chkmem = blkmem->chkmemhash[hashnumber]; while( chkmem != NULL && chkmem->elemsize != (int)size )