From d355c3681a4fc587b7279ba4d7be261b09dcde37 Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Wed, 6 Apr 2022 17:45:57 -0700 Subject: [PATCH] flog: typo: mmaped -> mmapped It is mapped, not maped. Same applies for mmap I guess. Found by codespell, except it wants to change it to mapped, which will make it less specific. Signed-off-by: Kir Kolyshkin --- flog/src/flog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flog/src/flog.c b/flog/src/flog.c index 8f11a36cb..f48b7f127 100644 --- a/flog/src/flog.c +++ b/flog/src/flog.c @@ -94,7 +94,7 @@ int flog_map_buf(int fdout) void *addr; /* - * Two buffers are mmaped into memory. A new one is mapped when a first + * Two buffers are mmapped into memory. A new one is mapped when a first * one is completly filled. */ if (fbuf && (mbuf - fbuf < BUF_SIZE))