This is the mail archive of the
gdb-patches@sources.redhat.com
mailing list for the GDB project.
[COMMITTED PATCH] typos
- From: Roland McGrath <roland at redhat dot com>
- To: gdb-patches at sources dot redhat dot com
- Date: Tue, 24 Feb 2004 14:59:25 -0800
- Subject: [COMMITTED PATCH] typos
I fixed some of my own typos.
2004-02-23 Roland McGrath <roland@redhat.com>
* auxv.c (info_auxv_command): Fix typos in error messages.
Index: auxv.c
===================================================================
RCS file: /cvs/src/src/gdb/auxv.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -p -r1.1 -r1.2
--- auxv.c 1 Feb 2004 22:35:24 -0000 1.1
+++ auxv.c 24 Feb 2004 01:00:30 -0000 1.2
@@ -276,16 +276,15 @@ fprint_target_auxv (struct ui_file *file
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, ¤t_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.");
}
}