From: Joel Brobecker Date: Fri, 26 Jan 2007 21:31:06 +0000 (+0000) Subject: * ada-lang.c (ada_exception_breakpoint_ops): Fix typo in function name. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4b9eee8cc6ea587ec041038da11bd016c3162a3c;p=binutils-gdb.git * ada-lang.c (ada_exception_breakpoint_ops): Fix typo in function name. (ada_exception_sal): Update accordingly. --- 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; }