Skip to content

Commit

Permalink
target: Fixed some missing parameter names
Browse files Browse the repository at this point in the history
  • Loading branch information
dragonmux committed Oct 20, 2024
1 parent 7e24d69 commit 0bae5aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/include/target.h
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ typedef enum target_breakwatch {
TARGET_WATCH_ACCESS,
} target_breakwatch_e;

int target_breakwatch_set(target_s *target, target_breakwatch_e, target_addr_t, size_t);
int target_breakwatch_clear(target_s *target, target_breakwatch_e, target_addr_t, size_t);
int target_breakwatch_set(target_s *target, target_breakwatch_e type, target_addr_t addr, size_t len);
int target_breakwatch_clear(target_s *target, target_breakwatch_e type, target_addr_t addr, size_t len);

/* Command interpreter */
void target_command_help(target_s *target);
Expand Down

0 comments on commit 0bae5aa

Please sign in to comment.