Fix signed/unsigned warning, bug 280557, r=doron

This commit is contained in:
allan%beaufour.dk 2005-01-31 19:15:58 +00:00
Родитель 46ae87bfdd
Коммит cf3ed7c023
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -804,8 +804,8 @@ nsXFormsModelElement::ValidateNode(nsIDOMNode *aInstanceNode, PRBool *aResult)
NS_LITERAL_STRING("type"), typeAttribute);
// split type (ns:type) into namespace and type.
PRUint32 separator = typeAttribute.FindChar(':');
if ((separator == kNotFound) || (separator == typeAttribute.Length()))
PRInt32 separator = typeAttribute.FindChar(':');
if ((separator == kNotFound) || ((PRUint32) separator == typeAttribute.Length()))
return NS_ERROR_UNEXPECTED;
// xxx send error to console