mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 01:03:55 -06:00
Drop more useless casts from void * to pointer
Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Laurent Vivier <laurent@vivier.eu> Message-Id: <20221123133811.1398562-1-armbru@redhat.com>
This commit is contained in:
parent
ea3a008d2d
commit
3d558330ad
15 changed files with 24 additions and 28 deletions
|
@ -73,11 +73,11 @@ int main(int argc, char *argv[argc])
|
|||
ml_printf("stack: %p <- %p\n", info.stack_limit, info.stack_base);
|
||||
|
||||
/* finally can we read/write the heap */
|
||||
ptr_to_heap = (uint32_t *) info.heap_base;
|
||||
ptr_to_heap = info.heap_base;
|
||||
for (i = 0; i < 512; i++) {
|
||||
*ptr_to_heap++ = i;
|
||||
}
|
||||
ptr_to_heap = (uint32_t *) info.heap_base;
|
||||
ptr_to_heap = info.heap_base;
|
||||
for (i = 0; i < 512; i++) {
|
||||
uint32_t tmp = *ptr_to_heap;
|
||||
if (tmp != i) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue