Fix non-void return value (found by Wolfgang Rosenauer, bug#242902). Not part of default build - SVG/Libart only.

This commit is contained in:
alex.fritze%crocodile-clips.com 2004-05-07 07:57:20 +00:00
Родитель 2c989a5264
Коммит 6a28e412f6
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -89,5 +89,5 @@ void art_free(void *ptr)
void * art_realloc(void* ptr, size_t size)
{
realloc(ptr, size);
return realloc(ptr, size);
}