IsCallerChrome() should return a PRBool like the signature says and not an nsresult.

r=cls sr=jst via IRC.  No bug.
This commit is contained in:
caillon%returnzero.com 2002-10-02 08:45:54 +00:00
parent 3496ea49dc
commit 1405fe4c71

View File

@ -854,7 +854,7 @@ PRBool
nsContentUtils::IsCallerChrome()
{
if (!sSecurityManager) {
return NS_OK;
return PR_FALSE;
}
PRBool is_caller_chrome = PR_FALSE;