(svn r6081) -Fix(6054) : Silenced a MSVC warning on compiling (thanks MaulinMonkey)

replace/41b28d7194a279bdc17475d4fbe2ea6ec885a466
belugas 18 years ago
parent 909fd71a09
commit 9bb2a97e57

@ -1123,7 +1123,7 @@ static void GlobalSortSignList(void)
uint n = 0;
/* Create array for sorting */
_sign_sort = realloc(_sign_sort, GetSignArraySize() * sizeof(_sign_sort[0]));
_sign_sort = realloc((void *)_sign_sort, GetSignArraySize() * sizeof(_sign_sort[0]));
if (_sign_sort == NULL) {
error("Could not allocate memory for the sign-sorting-list");
}

Loading…
Cancel
Save