* ada-lang.c (ada_exception_breakpoint_ops): Fix typo in function name.

(ada_exception_sal): Update accordingly.
This commit is contained in:
Joel Brobecker 2007-01-26 21:31:06 +00:00
parent e1f48eadc1
commit 4b9eee8cc6
2 changed files with 7 additions and 2 deletions

View File

@ -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.

View File

@ -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;
}