Fixes compilation error with sun workshop. Removed bogus case to

PRBool. r=akhil.arora@sun.com
This commit is contained in:
dp%netscape.com 1999-11-19 01:14:07 +00:00
Родитель 13b85be60b
Коммит 9cfb08dd49
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -189,5 +189,5 @@ PRBool nsAllocator::FetchAllocator()
{
nsAllocatorImpl::Create(NULL, nsIAllocator::GetIID(), (void**)&mAllocator);
NS_ASSERTION(mAllocator, "failed to get Allocator!");
return (PRBool) mAllocator;
return (mAllocator ? PR_TRUE : PR_FALSE);
}