From 2b03d2017cf0b49082e6424455c0221448d06fa6 Mon Sep 17 00:00:00 2001 From: "Kaveh R. Ghazi" Date: Sun, 10 Mar 2002 20:54:15 +0000 Subject: * attribs.c (decl_attributes): Fix signed/unsigned warning. From-SVN: r50543 --- gcc/attribs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/attribs.c') 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++) { -- cgit v1.2.1