fix operator precedence

This commit is contained in:
leitner 2015-12-15 14:11:35 +00:00
parent 80a9933ff1
commit 9b2377c4be

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,'[');