aboutsummaryrefslogtreecommitdiff
path: root/gcc/objc
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1995-05-16 17:46:53 -0400
committerRichard Kenner <kenner@gcc.gnu.org>1995-05-16 17:46:53 -0400
commitbbcffef3ad0a019ae4598d3c14cfc6872b9673f7 (patch)
treef0c41b120244a70e3c2f06cf64c60f27d787e9d4 /gcc/objc
parent2b61d00a8b7d74027dcfde0010711494af822f7e (diff)
downloadgcc-bbcffef3ad0a019ae4598d3c14cfc6872b9673f7.zip
gcc-bbcffef3ad0a019ae4598d3c14cfc6872b9673f7.tar.gz
gcc-bbcffef3ad0a019ae4598d3c14cfc6872b9673f7.tar.bz2
(struct sarray): Make capacity size_t.
From-SVN: r9722
Diffstat (limited to 'gcc/objc')
-rw-r--r--gcc/objc/sarray.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/objc/sarray.h b/gcc/objc/sarray.h
index 733c40c..61b7542 100644
--- a/gcc/objc/sarray.h
+++ b/gcc/objc/sarray.h
@@ -135,7 +135,7 @@ struct sarray {
short version;
short ref_count;
struct sarray* is_copy_of;
- int capacity;
+ size_t capacity;
};
struct sarray* sarray_new(int, void* default_element);