Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKir Kolyshkin <kolyshkin@gmail.com>2022-04-07 03:45:57 +0300
committerAndrei Vagin <avagin@google.com>2022-05-13 03:55:46 +0300
commitd355c3681a4fc587b7279ba4d7be261b09dcde37 (patch)
tree49a81749435eb3ffe6b1e21408a434d2ed923adf
parent09348a277f42f0f516d8b4c66e621e2a7aae3a0e (diff)
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 <kolyshkin@gmail.com>
-rw-r--r--flog/src/flog.c2
1 files changed, 1 insertions, 1 deletions
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))