diff options
author | Stefan Weil <weil@mail.berlios.de> | 2011-04-28 17:20:41 +0200 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> | 2011-05-08 10:02:18 +0100 |
commit | 8186e78311333a09315d86ea239c785c78519da1 (patch) | |
tree | 82bff6c3c50a9da99c6ee42f44e3146f022d4d53 /linux-user | |
parent | e8e3bb2fa815095a79bcec29d5de3459024d28da (diff) | |
download | qemu-8186e78311333a09315d86ea239c785c78519da1.tar.gz qemu-8186e78311333a09315d86ea239c785c78519da1.tar.bz2 qemu-8186e78311333a09315d86ea239c785c78519da1.zip |
Fix typo in comment (truely -> truly)
Signed-off-by: Stefan Weil <weil@mail.berlios.de>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Diffstat (limited to 'linux-user')
-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 0cf22f8cb2..994c02bb77 100644 --- a/linux-user/mmap.c +++ b/linux-user/mmap.c @@ -354,7 +354,7 @@ abi_ulong mmap_find_vma(abi_ulong start, abi_ulong size) } wrapped = 1; /* Don't actually use 0 when wrapping, instead indicate - that we'd truely like an allocation in low memory. */ + that we'd truly like an allocation in low memory. */ addr = (mmap_min_addr > TARGET_PAGE_SIZE ? TARGET_PAGE_ALIGN(mmap_min_addr) : TARGET_PAGE_SIZE); |