projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4045f49
)
exec/memory: Use correct type size
author
Philippe Mathieu-Daudé
<philmd@redhat.com>
Tue, 18 May 2021 18:36:36 +0000
(20:36 +0200)
committer
Richard Henderson
<richard.henderson@linaro.org>
Wed, 26 May 2021 15:35:51 +0000
(08:35 -0700)
Use uint8_t for (unsigned) byte.
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <
20210518183655
.
1711377
-7-philmd@redhat.com>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
include/exec/memory.h
patch
|
blob
|
history
diff --git
a/include/exec/memory.h
b/include/exec/memory.h
index c8b908892419f40e36683335a30b64bf08d35f0c..175d7151a5d953dfab83b601eaddd7de4fd010ac 100644
(file)
--- a/
include/exec/memory.h
+++ b/
include/exec/memory.h
@@
-2305,7
+2305,7
@@
static inline uint8_t address_space_ldub_cached(MemoryRegionCache *cache,
}
static inline void address_space_stb_cached(MemoryRegionCache *cache,
- hwaddr addr, uint
32
_t val, MemTxAttrs attrs, MemTxResult *result)
+ hwaddr addr, uint
8
_t val, MemTxAttrs attrs, MemTxResult *result)
{
assert(addr < cache->len);
if (likely(cache->ptr)) {