Make watchpoint.unique_id a uint32_t

Now it matches breakpoint.unique_id.

Change-Id: I06f24b2cede2ee56bdeac8666b5235f923b18659
This commit is contained in:
Tim Newsome 2022-04-27 12:41:13 -07:00
parent bd266161ca
commit e8b05455e2
1 changed files with 1 additions and 1 deletions

View File

@ -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);