aboutsummaryrefslogtreecommitdiff
path: root/gdb/ada-lang.c
diff options
context:
space:
mode:
authorJoel Brobecker <brobecker@gnat.com>2007-01-26 21:31:06 +0000
committerJoel Brobecker <brobecker@gnat.com>2007-01-26 21:31:06 +0000
commit4b9eee8cc6ea587ec041038da11bd016c3162a3c (patch)
tree14fbe147cd6f39853f02359cc155efc5bd1dc526 /gdb/ada-lang.c
parente1f48eadc1c23ae7e146a60f5a5c9bb04fafc298 (diff)
downloadgdb-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/ada-lang.c')
-rw-r--r--gdb/ada-lang.c4
1 files changed, 2 insertions, 2 deletions
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;
}