зеркало из https://github.com/mozilla/pjs.git
attempt to fix Sun OS breakage by casting enums to PRInt32.
This commit is contained in:
Родитель
a7cfc07b89
Коммит
32eacc3f16
|
@ -560,8 +560,8 @@ nsPSMSocketInfo::GetSecurityState(PRInt32 *aSecurityState)
|
|||
if (!mPickledStatus)
|
||||
SetPickledStatus();
|
||||
|
||||
*aSecurityState = mPickledStatus ? nsIWebProgressListener::STATE_IS_SECURE
|
||||
: nsIWebProgressListener::STATE_IS_BROKEN;
|
||||
*aSecurityState = mPickledStatus ? (PRInt32) nsIWebProgressListener::STATE_IS_SECURE
|
||||
: (PRInt32) nsIWebProgressListener::STATE_IS_BROKEN;
|
||||
|
||||
return NS_OK;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче