use prefix ++, not postfix ++. Bug 82615, r=heikki, sr=jst

git-svn-id: svn://10.0.0.236/trunk@128743 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bzbarsky%mit.edu
2002-09-03 22:23:22 +00:00
parent 6242aacba5
commit 4f51e5b41e
52 changed files with 228 additions and 228 deletions

View File

@@ -209,7 +209,7 @@ PageGrabber::NextFile(const char* aExtension)
struct stat sb;
int s = stat(cname, &sb);
if (s < 0) {
mFileNum++;
++mFileNum;
break;
}
else {

View File

@@ -388,7 +388,7 @@ void expandMacros(char* aBuffer,CMacros& aMacroSet){
while(aBuffer[++rPos]){
if('$'==aBuffer[rPos]){
temp[wPos]=0;
rPos++; //skip the $...
++rPos; //skip the $...
int theIndex=aBuffer[rPos]-'0';
char* theMacro=aMacroSet.getMacro(theIndex);
if(theMacro){