Browse Source

Fix a possible compiler warning on some build systems.

tags/v0.3
Ben Kurtovic 11 years ago
parent
commit
2596e697ae
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      mwparserfromhell/parser/tokenizer.c

+ 1
- 1
mwparserfromhell/parser/tokenizer.c View File

@@ -1021,7 +1021,7 @@ Tokenizer_really_parse_entity(Tokenizer* self)
break;
j++;
}
text[i] = this;
text[i] = (char) this;
self->head++;
i++;
}


Loading…
Cancel
Save