diff options
| author | Stefan Weil | 2011-04-28 17:20:27 +0200 |
|---|---|---|
| committer | Stefan Hajnoczi | 2011-05-08 11:02:16 +0200 |
| commit | 64c7b9d8e07936383db181876b59c597d6a1ff69 (patch) | |
| tree | 3fbca067abac47b426d781061d9fb0a098c9b823 /tests | |
| parent | Fix typos in comments (accross -> across) (diff) | |
| download | qemu-64c7b9d8e07936383db181876b59c597d6a1ff69.tar.gz qemu-64c7b9d8e07936383db181876b59c597d6a1ff69.tar.xz qemu-64c7b9d8e07936383db181876b59c597d6a1ff69.zip | |
Fix typos in comments (accessable -> accessible, priveleged -> privileged)
Signed-off-by: Stefan Weil <weil@mail.berlios.de>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/test-mmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test-mmap.c b/tests/test-mmap.c index c578e2572a..c67174a260 100644 --- a/tests/test-mmap.c +++ b/tests/test-mmap.c @@ -322,7 +322,7 @@ void check_file_unfixed_eof_mmaps(void) fail_unless (p1[(test_fsize & pagemask) / sizeof *p1 - 1] == ((test_fsize - sizeof *p1) / sizeof *p1)); - /* Verify that the end of page is accessable and zeroed. */ + /* Verify that the end of page is accessible and zeroed. */ cp = (void *) p1; fail_unless (cp[pagesize - 4] == 0); munmap (p1, pagesize); @@ -365,7 +365,7 @@ void check_file_fixed_eof_mmaps(void) fail_unless (p1[(test_fsize & pagemask) / sizeof *p1 - 1] == ((test_fsize - sizeof *p1) / sizeof *p1)); - /* Verify that the end of page is accessable and zeroed. */ + /* Verify that the end of page is accessible and zeroed. */ cp = (void *)p1; fail_unless (cp[pagesize - 4] == 0); munmap (p1, pagesize); |
