fix operator precedence

This commit is contained in:
Felix von Leitner 2015-12-15 14:11:35 +00:00
parent 8cf357cc70
commit 3c20566f55
1 changed files with 2 additions and 2 deletions

4
ent.c
View File

@ -158,12 +158,12 @@ int main() {
size_t ul;
if (!isspace(buf[0])) continue;
for (s=buf; *s && *s!='"'; ++s) ; // skip whitespace
if (!*s=='"') continue;
if (!(*s=='"')) continue;
++s;
entity=s;
if (*entity!='&') continue; ++entity; ++s;
for (; *s && *s!='"'; ++s) ; // skip to end of entity
if (!*s=='"') continue;
if (!(*s=='"')) continue;
if (s[-1]!=';') continue;
s[-1]=0; ++s;
s=strchr(s,'[');