diff options
Diffstat (limited to 'sim/common/sim-watch.c')
-rw-r--r-- | sim/common/sim-watch.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sim/common/sim-watch.c b/sim/common/sim-watch.c index 17125af..1bf2703 100644 --- a/sim/common/sim-watch.c +++ b/sim/common/sim-watch.c @@ -372,13 +372,13 @@ static const OPTION watchpoint_options[] = { { {"watch-delete", required_argument, NULL, OPTION_WATCH_DELETE }, '\0', "IDENT|all|pc|cycles|clock", "Delete a watchpoint", - watchpoint_option_handler }, + watchpoint_option_handler, NULL }, { {"watch-info", no_argument, NULL, OPTION_WATCH_INFO }, '\0', NULL, "List scheduled watchpoints", - watchpoint_option_handler }, + watchpoint_option_handler, NULL }, - { {NULL, no_argument, NULL, 0}, '\0', NULL, NULL, NULL } + { {NULL, no_argument, NULL, 0}, '\0', NULL, NULL, NULL, NULL } }; static const char *default_interrupt_names[] = { "int", 0, }; |