diff options
author | Vladimir Prus <vladimir@codesourcery.com> | 2009-02-17 19:52:27 +0000 |
---|---|---|
committer | Vladimir Prus <vladimir@codesourcery.com> | 2009-02-17 19:52:27 +0000 |
commit | 3ea85240b3dfc337e0955f5d480784607ce41bd6 (patch) | |
tree | d76df41ab8a56f4ce116707acde92bb47b5bd9ec /gdb/observer.c | |
parent | 4c1d29734e9ca4e8921c9962e0f342bcc9e95c16 (diff) | |
download | gdb-3ea85240b3dfc337e0955f5d480784607ce41bd6.zip gdb-3ea85240b3dfc337e0955f5d480784607ce41bd6.tar.gz gdb-3ea85240b3dfc337e0955f5d480784607ce41bd6.tar.bz2 |
* observer.c (observer_test_first_notification_function)
(observer_test_second_notification_function)
(observer_test_third_notification_function): Adjust prototype.
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 8a059c1..106bfcd 100644 --- a/gdb/observer.c +++ b/gdb/observer.c @@ -181,19 +181,19 @@ int observer_test_second_observer = 0; int observer_test_third_observer = 0; void -observer_test_first_notification_function (struct bpstats *bs) +observer_test_first_notification_function (int arg) { observer_test_first_observer++; } void -observer_test_second_notification_function (struct bpstats *bs) +observer_test_second_notification_function (int arg) { observer_test_second_observer++; } void -observer_test_third_notification_function (struct bpstats *bs) +observer_test_third_notification_function (int arg) { observer_test_third_observer++; } |