AIX bustage fix for checkin from Bug 192139.

r=peterv@propagandism.org
This commit is contained in:
pkw%us.ibm.com 2004-12-15 17:35:52 +00:00
Родитель 44c540316d
Коммит 939be151c3
1 изменённых файлов: 5 добавлений и 1 удалений

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

@ -1006,7 +1006,11 @@ nsExpatDriver::WillBuildModel(const CParserContext& aParserContext,
NS_ENSURE_TRUE(mSink, NS_ERROR_FAILURE);
static const XML_Memory_Handling_Suite memsuite =
{ PR_Malloc, PR_Realloc, PR_Free };
{
(void *(*)(size_t))PR_Malloc,
(void *(*)(void *, size_t))PR_Realloc,
PR_Free
};
static const PRUnichar kExpatSeparator[] = { 0xFFFF, '\0' };