diff options
Diffstat (limited to 'gdb/observer.c')
-rw-r--r-- | gdb/observer.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/observer.c b/gdb/observer.c index 20bc8aa..53916ce 100644 --- a/gdb/observer.c +++ b/gdb/observer.c @@ -172,19 +172,19 @@ int observer_test_second_observer = 0; int observer_test_third_observer = 0; void -observer_test_first_notification_function (void) +observer_test_first_notification_function (struct bpstats *bs) { observer_test_first_observer++; } void -observer_test_second_notification_function (void) +observer_test_second_notification_function (struct bpstats *bs) { observer_test_second_observer++; } void -observer_test_third_notification_function (void) +observer_test_third_notification_function (struct bpstats *bs) { observer_test_third_observer++; } |