2004-02-23 Roland McGrath <roland@redhat.com>
authorRoland McGrath <roland@gnu.org>
Tue, 24 Feb 2004 01:00:30 +0000 (01:00 +0000)
committerRoland McGrath <roland@gnu.org>
Tue, 24 Feb 2004 01:00:30 +0000 (01:00 +0000)
* auxv.c (info_auxv_command): Fix typos in error messages.

gdb/auxv.c

index c28014c4a9efd879d1f06c66e252e88d1fd111c3..a2516b685286c71f83fc2c3c78b9e2452b3cbad7 100644 (file)
@@ -276,16 +276,15 @@ fprint_target_auxv (struct ui_file *file, struct target_ops *ops)
 static void
 info_auxv_command (char *cmd, int from_tty)
 {
-
   if (! target_has_stack)
     error ("The program has no auxiliary information now.");
   else
     {
       int ents = fprint_target_auxv (gdb_stdout, &current_target);
       if (ents < 0)
-       error ("No auxilary vector found, or failed reading it.");
+       error ("No auxiliary vector found, or failed reading it.");
       else if (ents == 0)
-       error ("Auxilary vector is empty.");
+       error ("Auxiliary vector is empty.");
     }
 }
 
This page took 0.026267 seconds and 4 git commands to generate.