(struct sarray): Make capacity size_t.

From-SVN: r9722
This commit is contained in:
Richard Kenner 1995-05-16 17:46:53 -04:00
parent 2b61d00a8b
commit bbcffef3ad

View File

@ -135,7 +135,7 @@ struct sarray {
short version; short version;
short ref_count; short ref_count;
struct sarray* is_copy_of; struct sarray* is_copy_of;
int capacity; size_t capacity;
}; };
struct sarray* sarray_new(int, void* default_element); struct sarray* sarray_new(int, void* default_element);