Explorar el Código

trivial: Correct typo in rlparser.

pull/5523/head
Eddy Jansson hace 2 días
padre
commit
22b2f17660
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      tools/rlparser/rlparser.c

+ 2
- 2
tools/rlparser/rlparser.c Ver fichero

@ -260,7 +260,7 @@ int main(int argc, char *argv[])
for (int i = 0; i < lineCount; i++)
{
int j = 0;
while ((lines[i][j] == ' ') || (lines[i][j] == '\t')) j++; // skip spaces and tabs in the begining
while ((lines[i][j] == ' ') || (lines[i][j] == '\t')) j++; // skip spaces and tabs in the beginning
// Read define line
if (IsTextEqual(lines[i]+j, "#define ", 8))
{
@ -385,7 +385,7 @@ int main(int argc, char *argv[])
char *linePtr = lines[defineLines[i]];
int j = 0;
while ((linePtr[j] == ' ') || (linePtr[j] == '\t')) j++; // Skip spaces and tabs in the begining
while ((linePtr[j] == ' ') || (linePtr[j] == '\t')) j++; // Skip spaces and tabs in the beginning
j += 8; // Skip "#define "
while ((linePtr[j] == ' ') || (linePtr[j] == '\t')) j++; // Skip spaces and tabs after "#define "

Cargando…
Cancelar
Guardar