Added a cast to a return value to stop a pointer comparison assert from firing.

This commit is contained in:
locka%iol.ie 2000-05-03 23:44:15 +00:00
Родитель 2b83954c77
Коммит 6beaccda07
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -72,7 +72,7 @@ NS_IMETHODIMP CWebBrowserContainer::GetInterface(const nsIID & uuid, void * *res
{ {
if (memcmp(&uuid, &nsIPrompt::GetIID(), sizeof(nsIID)) == 0) if (memcmp(&uuid, &nsIPrompt::GetIID(), sizeof(nsIID)) == 0)
{ {
*result = this; *result = (nsIPrompt *) this;
AddRef(); AddRef();
return NS_OK; return NS_OK;
} }