diff options
| author | Philippe Mathieu-Daudé <philmd@redhat.com> | 2020-02-19 20:12:01 +0100 |
|---|---|---|
| committer | Philippe Mathieu-Daudé <philmd@redhat.com> | 2020-02-20 14:47:08 +0100 |
| commit | ae5883abec539e63f0cf7bf7aa5f44c9b62568e2 (patch) | |
| tree | 13919f0b161954e21acb856f7ee1806249c3e171 /include/exec/memory.h | |
| parent | b897a47450d6058d0acf2fe70ee90ea8fc65cb51 (diff) | |
| download | focaccia-qemu-ae5883abec539e63f0cf7bf7aa5f44c9b62568e2.tar.gz focaccia-qemu-ae5883abec539e63f0cf7bf7aa5f44c9b62568e2.zip | |
exec: Let address_space_unmap() use a boolean 'is_write' argument
The 'is_write' argument is either 0 or 1. Convert it to a boolean type. Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Diffstat (limited to 'include/exec/memory.h')
| -rw-r--r-- | include/exec/memory.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/exec/memory.h b/include/exec/memory.h index afee185eae..1614d9a02c 100644 --- a/include/exec/memory.h +++ b/include/exec/memory.h @@ -2329,7 +2329,7 @@ void *address_space_map(AddressSpace *as, hwaddr addr, * @is_write: indicates the transfer direction */ void address_space_unmap(AddressSpace *as, void *buffer, hwaddr len, - int is_write, hwaddr access_len); + bool is_write, hwaddr access_len); /* Internal functions, part of the implementation of address_space_read. */ |