Module: wine Branch: master Commit: 15831e0dcc76ced1adfda503da7fdc3237ceb595 URL: https://gitlab.winehq.org/wine/wine/-/commit/15831e0dcc76ced1adfda503da7fdc3...
Author: Francois Gouget fgouget@free.fr Date: Sat Jul 9 15:58:51 2022 +0200
ntdll: Fix the spelling of a comment.
Signed-off-by: Francois Gouget fgouget@free.fr
---
dlls/ntdll/heap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/ntdll/heap.c b/dlls/ntdll/heap.c index 40c317417ce..91a231e01b7 100644 --- a/dlls/ntdll/heap.c +++ b/dlls/ntdll/heap.c @@ -755,7 +755,7 @@ static void free_used_block( struct heap *heap, SUBHEAP *subheap, struct block * } else if (!heap->shared) { - /* keep room for a full commited block as hysteresis */ + /* keep room for a full committed block as hysteresis */ subheap_decommit( heap, subheap, (char *)(entry + 1) + (COMMIT_MASK + 1) ); } }