diff options
author | Joel Brobecker <brobecker@gnat.com> | 2007-01-26 21:31:06 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2007-01-26 21:31:06 +0000 |
commit | 4b9eee8cc6ea587ec041038da11bd016c3162a3c (patch) | |
tree | 14fbe147cd6f39853f02359cc155efc5bd1dc526 /gdb | |
parent | e1f48eadc1c23ae7e146a60f5a5c9bb04fafc298 (diff) | |
download | gdb-4b9eee8cc6ea587ec041038da11bd016c3162a3c.zip gdb-4b9eee8cc6ea587ec041038da11bd016c3162a3c.tar.gz gdb-4b9eee8cc6ea587ec041038da11bd016c3162a3c.tar.bz2 |
* ada-lang.c (ada_exception_breakpoint_ops): Fix typo in function name.
(ada_exception_sal): Update accordingly.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/ada-lang.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 7eef22b..a21ec4a 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2007-01-26 Joel Brobecker <brobecker@adacore.com> + + * ada-lang.c (ada_exception_breakpoint_ops): Fix typo in function name. + (ada_exception_sal): Update accordingly. + 2007-01-26 Jan Kratochvil <jan.kratochvil@redhat.com> * c-valprint.c (c_val_print): Require strings to be of no-signed CHARs. diff --git a/gdb/ada-lang.c b/gdb/ada-lang.c index 79a5460..a80ef41 100644 --- a/gdb/ada-lang.c +++ b/gdb/ada-lang.c @@ -9559,7 +9559,7 @@ ada_exception_sym_name (enum exception_catchpoint_kind ex) of the EX kind. */ static struct breakpoint_ops * -ada_exception_breakption_ops (enum exception_catchpoint_kind ex) +ada_exception_breakpoint_ops (enum exception_catchpoint_kind ex) { switch (ex) { @@ -9685,7 +9685,7 @@ ada_exception_sal (enum exception_catchpoint_kind ex, char *exp_string, } /* Set OPS. */ - *ops = ada_exception_breakption_ops (ex); + *ops = ada_exception_breakpoint_ops (ex); return sal; } |