This is an automated email from Gerrit. "zapb <d...@zapb.de>" just uploaded a new patch set to Gerrit, which you can find at https://review.openocd.org/c/openocd/+/7056
-- gerrit commit 46b94ac7bc49b00fd33bcc46841c28f5242cbd40 Author: Marc Schink <d...@zapb.de> Date: Fri Jun 24 10:25:11 2022 +0200 target/breakpoints: Use uint32_t for 'length' member Change-Id: I233efb5b18de5f043fdc976807437db0a94236d1 Signed-off-by: Marc Schink <d...@zapb.de> diff --git a/src/target/breakpoints.h b/src/target/breakpoints.h index 0a5949594d..eb56662c01 100644 --- a/src/target/breakpoints.h +++ b/src/target/breakpoints.h @@ -37,7 +37,7 @@ enum watchpoint_rw { struct breakpoint { target_addr_t address; uint32_t asid; - int length; + uint32_t length; enum breakpoint_type type; bool is_set; unsigned int number; --