From c2b6e7327d8eaacfd50d253b784477987ce98e1d Mon Sep 17 00:00:00 2001 From: Even Rouault Date: Wed, 29 May 2024 20:38:30 +0200 Subject: [PATCH] typo fix --- port/cpl_vsisimple.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/port/cpl_vsisimple.cpp b/port/cpl_vsisimple.cpp index d265a91519b5..744b540a08cd 100644 --- a/port/cpl_vsisimple.cpp +++ b/port/cpl_vsisimple.cpp @@ -907,7 +907,7 @@ void VSIFree(void *pData) void *VSIMallocAligned(size_t nAlignment, size_t nSize) { - // In particular for posix_memalign() where behaviour when passing + // In particular for posix_memalign() where behavior when passing // nSize == 0 is technically implementation defined (Valgrind complains), // so let's always return NULL. if (nSize == 0)