summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rsc/source/prj/start.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/rsc/source/prj/start.cxx b/rsc/source/prj/start.cxx
index ab4278027967..0fea59ccd009 100644
--- a/rsc/source/prj/start.cxx
+++ b/rsc/source/prj/start.cxx
@@ -210,7 +210,7 @@ static BOOL CallRsc2( ByteString aRsc2Name,
ByteString aSrsName,
RscPtrPtr * pCmdLine )
{
- int i, nExit;
+ int nExit;
ByteString* pString;
ByteString aRspFileName; // Response-Datei
FILE * fRspFile; // Response-Datei
@@ -221,7 +221,7 @@ static BOOL CallRsc2( ByteString aRsc2Name,
RscVerbosity eVerbosity = RscVerbosityNormal;
if( fRspFile )
{
- for( i = 1; i < (int)(pCmdLine->GetCount() -1); i++ )
+ for (int i = 1; i < (int)(pCmdLine->GetCount() -1); ++i)
{
if ( !rsc_stricmp( (char *)pCmdLine->GetEntry( i ), "-verbose" ) )
{