* valops.c (search_struct_field): Fix typo in error message.

This commit is contained in:
Doug Evans 2010-06-27 16:26:41 +00:00
parent 6bee8834bf
commit 9f18a3b398
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2010-06-27 Doug Evans <dje@google.com>
* valops.c (search_struct_field): Fix typo in error message.
2010-06-26 Ulrich Weigand <uweigand@de.ibm.com>
* dwarf2expr.c (execute_stack_op): Place preprocessor

View File

@ -1852,7 +1852,7 @@ search_struct_field (const char *name, struct value *arg1, int offset,
{
v = value_static_field (type, i);
if (v == 0)
error (_("field %s is nonexistent or has been optimised out"),
error (_("field %s is nonexistent or has been optimized out"),
name);
}
else