From: brobecke Date: Fri, 26 Jan 2007 21:31:05 +0000 (+0000) Subject: * ada-lang.c (ada_exception_breakpoint_ops): Fix typo in function name. X-Git-Tag: drop_9x_support_start~328 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=dbde428a669c51d1314c82c890055cc76a6df7f0;p=pf3gnuchains%2Fpf3gnuchains4x.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 7eef22bba7..a21ec4a25e 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 79a5460fa6..a80ef41334 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; }