diff options
Diffstat (limited to 'industry_gui.c')
-rw-r--r-- | industry_gui.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/industry_gui.c b/industry_gui.c index 0b6c3c63c..4b3a1a2c0 100644 --- a/industry_gui.c +++ b/industry_gui.c @@ -557,7 +557,7 @@ static void MakeSortedIndustryList(void) int n = 0; /* Create array for sorting */ - _industry_sort = realloc((void*)_industry_sort, GetIndustryPoolSize() * sizeof(_industry_sort[0])); + _industry_sort = realloc((void *)_industry_sort, GetIndustryArraySize() * sizeof(_industry_sort[0])); if (_industry_sort == NULL) error("Could not allocate memory for the industry-sorting-list"); |