diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-03-10 20:54:15 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-03-10 20:54:15 +0000 |
commit | 40265b779e4f6dbb508f3554b15aa2eedd4edaa5 (patch) | |
tree | 2948affac57cdef7f2f59fadc2866a292ed31628 /gcc/attribs.c | |
parent | 52a7ab236bcac13dfb0f75d62e2d3cfc28b686cb (diff) | |
download | gcc-40265b779e4f6dbb508f3554b15aa2eedd4edaa5.tar.gz |
* attribs.c (decl_attributes): Fix signed/unsigned warning.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@50543 138bc75d-0d04-0410-961f-82ee72b054a4
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++) { |