]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
* ada-lang.c (ada_exception_breakpoint_ops): Fix typo in function name.
authorJoel Brobecker <brobecker@gnat.com>
Fri, 26 Jan 2007 21:31:06 +0000 (21:31 +0000)
committerJoel Brobecker <brobecker@gnat.com>
Fri, 26 Jan 2007 21:31:06 +0000 (21:31 +0000)
        (ada_exception_sal): Update accordingly.

gdb/ChangeLog
gdb/ada-lang.c

index 7eef22bba704f1fabe07f1bddfb0f89798be1ead..a21ec4a25ee3194c628f18e58466f8016d15a287 100644 (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.
index 79a5460fa6c48383c267caa77a8ae1392095d5bb..a80ef41334a2b535e78979acff647dc36dcdf74c 100644 (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;
 }