oops, warnings fixes from previous checkin

This commit is contained in:
alecf%netscape.com 2003-01-22 05:46:07 +00:00
Родитель ff0871a702
Коммит 7a3b002a45
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -362,7 +362,7 @@ ParseBuffer(nsParserState& aState,
const PRUnichar* end = aBuffer + aBufferLength;
// points the start/end of the current key or value
const PRUnichar* tokenStart = nsnull, tokenEnd = nsnull;
const PRUnichar* tokenStart = nsnull;
// if we're in the middle of parsing a key or value, make sure
// the current token points to the beginning of the current buffer
@ -559,7 +559,7 @@ nsPersistentProperties::Enumerate(nsISimpleEnumerator** aResult)
// Step through hash entries populating a transient array
PRUint32 n =
PL_DHashTableEnumerate(&mTable, AddElemToArray, (void *)propArray);
if ( n < (PRIntn) mTable.entryCount )
if ( n < mTable.entryCount )
return NS_ERROR_OUT_OF_MEMORY;
return NS_NewArrayEnumerator(aResult, propArray);