@@ -287,7 +287,7 @@ static void findNsisTags (void)
287
287
else if (lineStartingWith (cp , "sectiongroup" , false))
288
288
{
289
289
cp += 12 ;
290
- cp = parseSection (cp , name , K_SECTION_GROUP , CORK_NIL , & sectionGroupIndex );
290
+ parseSection (cp , name , K_SECTION_GROUP , CORK_NIL , & sectionGroupIndex );
291
291
}
292
292
else if (lineStartingWith (cp , "sectiongroupend" , true))
293
293
{
@@ -298,19 +298,19 @@ static void findNsisTags (void)
298
298
else if (lineStartingWith (cp , "section" , false))
299
299
{
300
300
cp += 7 ;
301
- cp = parseSection (cp , name , K_SECTION , sectionGroupIndex , NULL );
301
+ parseSection (cp , name , K_SECTION , sectionGroupIndex , NULL );
302
302
}
303
303
/* LangString */
304
304
else if (lineStartingWith (cp , "langstring" , false))
305
305
{
306
306
cp += 10 ;
307
- cp = parseLangString (cp , name );
307
+ parseLangString (cp , name );
308
308
}
309
309
/* LicenseLangString */
310
310
else if (lineStartingWith (cp , "licenselangstring" , false))
311
311
{
312
312
cp += 17 ;
313
- cp = parseLangString (cp , name );
313
+ parseLangString (cp , name );
314
314
}
315
315
/* definitions */
316
316
else if (lineStartingWith (cp , "!define" , false))
0 commit comments