From: Craig Rodrigues Date: Fri, 11 Jan 2002 22:38:55 +0000 (+0000) Subject: re PR other/5299 (then -> than fixes) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=24e511ca8eb620425d38c4bc7be0d42edfead2aa;p=gcc.git re PR other/5299 (then -> than fixes) 2002-01-11 Craig Rodrigues PR other/5299 * decl.c (layout_enum): Fix spelling mistake of "than". * inout.c (check_text_length): Same. From-SVN: r48779 --- diff --git a/gcc/ch/ChangeLog b/gcc/ch/ChangeLog index aabd65bd1b3..64d271daf9e 100644 --- a/gcc/ch/ChangeLog +++ b/gcc/ch/ChangeLog @@ -1,3 +1,9 @@ +2002-01-11 Craig Rodrigues + + PR other/5299 + * decl.c (layout_enum): Fix spelling mistake of "than". + * inout.c (check_text_length): Same. + 2001-12-20 Joseph S. Myers * config-lang.in (diff_excludes): Remove. diff --git a/gcc/ch/decl.c b/gcc/ch/decl.c index dc9a00fadcc..d0188f88c6c 100644 --- a/gcc/ch/decl.c +++ b/gcc/ch/decl.c @@ -4427,7 +4427,7 @@ layout_enum (enumtype) constant_expression_warning (value); if (tree_int_cst_lt (value, integer_zero_node)) { - error ("enumerator value for `%s' is less then 0", + error ("enumerator value for `%s' is less than 0", IDENTIFIER_POINTER (DECL_NAME (decl))); value = error_mark_node; } diff --git a/gcc/ch/inout.c b/gcc/ch/inout.c index d83f1bd8501..6049ff45927 100644 --- a/gcc/ch/inout.c +++ b/gcc/ch/inout.c @@ -1652,7 +1652,7 @@ check_text_length (length) } if (compare_int_csts (LE_EXPR, length, integer_zero_node)) { - error ("text length must be greater then 0"); + error ("text length must be greater than 0"); return integer_one_node; } return length;