diff options
author | Michael Tokarev <mjt@tls.msk.ru> | 2025-05-07 19:59:34 +0300 |
---|---|---|
committer | Michael Tokarev <mjt@tls.msk.ru> | 2025-05-09 23:49:26 +0300 |
commit | 688e4a6e7757f6f2e5da3c15b8efe6ed737e34b5 (patch) | |
tree | 24253674f59c5f6ba8241c7ef63aa681606f3bea | |
parent | 07153411cd57e8d6933ab8a43035ed097deee696 (diff) | |
download | qemu-688e4a6e7757f6f2e5da3c15b8efe6ed737e34b5.zip qemu-688e4a6e7757f6f2e5da3c15b8efe6ed737e34b5.tar.gz qemu-688e4a6e7757f6f2e5da3c15b8efe6ed737e34b5.tar.bz2 |
linux-user/mmap.c: fix "of of" typo in comment
Suggested-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
-rw-r--r-- | linux-user/mmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-user/mmap.c b/linux-user/mmap.c index f88a80c..002e1e6 100644 --- a/linux-user/mmap.c +++ b/linux-user/mmap.c @@ -645,7 +645,7 @@ static abi_long mmap_h_eq_g(abi_ulong start, abi_ulong len, * * However, this case is rather common with executable images, * so the workaround is important for even trivial tests, whereas - * the mmap of of a file being extended is less common. + * the mmap of a file being extended is less common. */ static abi_long mmap_h_lt_g(abi_ulong start, abi_ulong len, int host_prot, int mmap_flags, int page_flags, int fd, |