diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 62d7a917b30..bafb1ac3d0f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2002-03-10 Kaveh R. Ghazi + + * attribs.c (decl_attributes): Fix signed/unsigned warning. + 2002-03-10 Hans-Peter Nilsson * config/mmix/mmix.c: Improve comments. diff --git a/gcc/attribs.c b/gcc/attribs.c index c1536f699a3..74f6b05d010 100644 --- a/gcc/attribs.c +++ b/gcc/attribs.c @@ -283,7 +283,7 @@ decl_attributes (node, attributes, flags) tree *anode = node; const struct attribute_spec *spec = NULL; bool no_add_attrs = 0; - int i; + size_t i; for (i = 0; i < ARRAY_SIZE (attribute_tables); i++) {