removed warnings

git-svn-id: svn://10.0.0.236/trunk@44440 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
rickg%netscape.com
1999-08-25 03:11:05 +00:00
parent 9a8d155dac
commit a9f7f06dc9
3 changed files with 3 additions and 3 deletions

View File

@@ -590,7 +590,7 @@ PRInt32 _ToInteger(nsCString& aString,PRInt32* anErrorCode,PRUint32 aRadix) {
char theChar=0;
char theDigit=0;
while(--cp>=aString.mStr){
char theChar=*cp;
theChar=*cp;
if((theChar>='0') && (theChar<='9')){
theDigit=theChar-'0';
}