aboutsummaryrefslogtreecommitdiff
path: root/libobjc/objc
diff options
context:
space:
mode:
authorHans-Peter Nilsson <hp@bitrange.com>2002-04-09 07:11:53 +0000
committerHans-Peter Nilsson <hp@gcc.gnu.org>2002-04-09 07:11:53 +0000
commit81e6765afaf2d08b3227b56efb36cd795721b132 (patch)
tree7ace9bec58f2e3b721a4be61074a6b67789d133c /libobjc/objc
parent4574fcd6e1fc08c3b84a32dbe41b280588b6a830 (diff)
downloadgcc-81e6765afaf2d08b3227b56efb36cd795721b132.zip
gcc-81e6765afaf2d08b3227b56efb36cd795721b132.tar.gz
gcc-81e6765afaf2d08b3227b56efb36cd795721b132.tar.bz2
re PR objc/6107 (sparc-sun-solaris2.7 gcc-3.1 extra objc testsuite failures w/-m64)
PR objc/6107 * objc/objc-api.h (struct objc_protocol_list): Change type of member count from int to size_t. From-SVN: r52060
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 a0b404d..9268020 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];
};