attempt to fix Sun OS breakage by casting enums to PRInt32.

This commit is contained in:
mscott%netscape.com 2000-12-20 01:49:21 +00:00
Родитель a7cfc07b89
Коммит 32eacc3f16
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -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;
}