diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2002-03-10 20:54:15 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2002-03-10 20:54:15 +0000 |
commit | 2b03d2017cf0b49082e6424455c0221448d06fa6 (patch) | |
tree | 2948affac57cdef7f2f59fadc2866a292ed31628 /gcc/attribs.c | |
parent | 644d28d40e1960d35d9c455d202e04c029c3c13a (diff) | |
download | gcc-2b03d2017cf0b49082e6424455c0221448d06fa6.tar.gz |
* attribs.c (decl_attributes): Fix signed/unsigned warning.
From-SVN: r50543
Diffstat (limited to 'gcc/attribs.c')
-rw-r--r-- | gcc/attribs.c | 2 |
1 files changed, 1 insertions, 1 deletions
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++) { |