Skip to content

Commit 4cef89c

Browse files
committed
Update rexm.c
1 parent 63fb407 commit 4cef89c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tools/rexm/rexm.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1667,7 +1667,7 @@ int main(int argc, char *argv[])
16671667
int exTestBuildLogLinesCount = 0;
16681668
char **exTestBuildLogLines = LoadTextLines(exTestBuildLog, &exTestBuildLogLinesCount);
16691669

1670-
for (int k = 0, index = 0; k < exTestBuildLogLinesCount; k++)
1670+
for (int k = 0; k < exTestBuildLogLinesCount; k++)
16711671
{
16721672
// Checking compilation warnings generated
16731673
if (TextFindIndex(exTestBuildLogLines[k], "warning:") >= 0) testing[i].buildwarns++;
@@ -1710,7 +1710,7 @@ int main(int argc, char *argv[])
17101710
// Load build log text lines
17111711
int exTestLogLinesCount = 0;
17121712
char **exTestLogLines = LoadTextLines(exTestLog, &exTestLogLinesCount);
1713-
for (int k = 0, index = 0; k < exTestLogLinesCount; k++)
1713+
for (int k = 0; k < exTestLogLinesCount; k++)
17141714
{
17151715
if (TextFindIndex(exTestLogLines[k], "WARNING: GL: NPOT") >= 0) continue; // Ignore warning
17161716
if (TextFindIndex(exTestLogLines[k], "WARNING") >= 0) testing[i].warnings++;
@@ -2136,7 +2136,7 @@ static int UpdateRequiredFiles(void)
21362136
mdIndex += sprintf(mdTextUpdated + mdListStartIndex + mdIndex,
21372137
"\nSome example missing? As always, contributions are welcome, feel free to send new examples!\n");
21382138
mdIndex += sprintf(mdTextUpdated + mdListStartIndex + mdIndex,
2139-
"Here is an[examples template](examples_template.c) with instructions to start with!\n");
2139+
"Here is an [examples template](examples_template.c) with instructions to start with!\n");
21402140

21412141
// Save updated file
21422142
SaveFileText(TextFormat("%s/README.md", exBasePath), mdTextUpdated);

0 commit comments

Comments
 (0)