options.c, [...]: Fix typos in error messages.

* options.c, primary.c, resolve.c, trans-common.c: Fix typos
	in error messages.

From-SVN: r114183
This commit is contained in:
Kazu Hirata 2006-05-29 05:19:37 +00:00 committed by Kazu Hirata
parent 8e05dcfe27
commit eb6d74fa82
5 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2006-05-29 Kazu Hirata <kazu@codesourcery.com>
* options.c, primary.c, resolve.c, trans-common.c: Fix typos
in error messages.
2006-05-28 Kazu Hirata <kazu@codesourcery.com>
* check.c, expr.c, resolve.c, trans-common.c,

View File

@ -533,7 +533,7 @@ gfc_handle_option (size_t scode, const char *arg, int value)
case OPT_fmax_identifier_length_:
if (value > GFC_MAX_SYMBOL_LEN)
gfc_fatal_error ("Maximum supported idenitifier length is %d",
gfc_fatal_error ("Maximum supported identifier length is %d",
GFC_MAX_SYMBOL_LEN);
gfc_option.max_identifier_length = value;
break;

View File

@ -265,7 +265,7 @@ match_hollerith_constant (gfc_expr ** result)
}
if (e->ts.kind != gfc_default_integer_kind)
{
gfc_error ("Invalid Hollerith constant: Interger kind at %L "
gfc_error ("Invalid Hollerith constant: Integer kind at %L "
"should be default", &old_loc);
goto cleanup;
}

View File

@ -3992,7 +3992,7 @@ gfc_find_forall_index (gfc_expr *expr, gfc_symbol *symbol)
break;
default:
gfc_error("expresion reference type error at %L", &expr->where);
gfc_error("expression reference type error at %L", &expr->where);
}
tmp = tmp->next;
}

View File

@ -848,7 +848,7 @@ align_segment (unsigned HOST_WIDE_INT * palign)
{
/* Aligning this field would misalign a previous field. */
gfc_error ("The equivalence set for variable '%s' "
"declared at %L violates alignment requirents",
"declared at %L violates alignment requirements",
s->sym->name, &s->sym->declared_at);
}
offset += this_offset;