summaryrefslogtreecommitdiff
path: root/libobjc/objc
diff options
context:
space:
mode:
authorhp <hp@138bc75d-0d04-0410-961f-82ee72b054a4>2002-04-09 07:06:18 +0000
committerhp <hp@138bc75d-0d04-0410-961f-82ee72b054a4>2002-04-09 07:06:18 +0000
commit6dd85fea305352f5f2911c2d3e158048930cc436 (patch)
tree813b09a90b413f61d062ac2bb0b6dd5976947833 /libobjc/objc
parentefd81e8d250edfd29de611895051b106df3b7369 (diff)
downloadgcc-6dd85fea305352f5f2911c2d3e158048930cc436.tar.gz
PR objc/6107
* objc/objc-api.h (struct objc_protocol_list): Change type of member count from int to size_t. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@52058 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libobjc/objc')
-rw-r--r--libobjc/objc/objc-api.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libobjc/objc/objc-api.h b/libobjc/objc/objc-api.h
index a0b404dc9ae..92680209eab 100644
--- a/libobjc/objc/objc-api.h
+++ b/libobjc/objc/objc-api.h
@@ -1,5 +1,5 @@
/* GNU Objective-C Runtime API.
- Copyright (C) 1993, 1995, 1996, 1997 Free Software Foundation, Inc.
+ Copyright (C) 1993, 1995, 1996, 1997, 2002 Free Software Foundation, Inc.
This file is part of GNU CC.
@@ -261,7 +261,7 @@ typedef struct objc_method_list {
struct objc_protocol_list {
struct objc_protocol_list *next;
- int count;
+ size_t count;
Protocol *list[1];
};