From 4b9eee8cc6ea587ec041038da11bd016c3162a3c Mon Sep 17 00:00:00 2001 From: Joel Brobecker Date: Fri, 26 Jan 2007 21:31:06 +0000 Subject: [PATCH] * ada-lang.c (ada_exception_breakpoint_ops): Fix typo in function name. (ada_exception_sal): Update accordingly. --- gdb/ChangeLog | 5 +++++ gdb/ada-lang.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 7eef22bba70..a21ec4a25ee 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2007-01-26 Joel Brobecker + + * ada-lang.c (ada_exception_breakpoint_ops): Fix typo in function name. + (ada_exception_sal): Update accordingly. + 2007-01-26 Jan Kratochvil * 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 79a5460fa6c..a80ef41334a 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; } -- 2.30.2