From e8b05455e21079d0e0698235bf4b85bda6023875 Mon Sep 17 00:00:00 2001 From: Tim Newsome Date: Wed, 27 Apr 2022 12:41:13 -0700 Subject: Make watchpoint.unique_id a uint32_t Now it matches breakpoint.unique_id. Change-Id: I06f24b2cede2ee56bdeac8666b5235f923b18659 --- src/target/breakpoints.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/target/breakpoints.h b/src/target/breakpoints.h index 0a59495..fc5b50b 100644 --- a/src/target/breakpoints.h +++ b/src/target/breakpoints.h @@ -56,7 +56,7 @@ struct watchpoint { bool is_set; unsigned int number; struct watchpoint *next; - int unique_id; + uint32_t unique_id; }; void breakpoint_clear_target(struct target *target); -- cgit v1.1