Skip to content

Commit afa3620

Browse files
committed
sim: Fix wrong usage of pointer
Fixes not using a pointer as a pointer Signed-off-by: Jamie McCrae <jamie.mccrae@nordicsemi.no>
1 parent 09aeaeb commit afa3620

File tree

1 file changed

+1
-1
lines changed
  • sim/mcuboot-sys/csupport

1 file changed

+1
-1
lines changed

sim/mcuboot-sys/csupport/run.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ int invoke_boot_go(struct sim_context *ctx, struct area_desc *adesc,
279279
sim_reset_flash_areas();
280280
sim_reset_context();
281281
free(state);
282-
/* printf("boot_go off: %d (0x%08x)\n", res, rsp.br_image_off); */
282+
/* printf("boot_go off: %d (0x%08x)\n", res, rsp->br_image_off); */
283283
return res;
284284
} else {
285285
sim_reset_flash_areas();

0 commit comments

Comments
 (0)