Corrected typo with == vs. =

This commit is contained in:
Tim Edwards 2016-12-12 11:51:24 -05:00
parent 310d7512a0
commit fdab366627
1 changed files with 1 additions and 1 deletions

View File

@ -2979,7 +2979,7 @@ void add_balancing_close(struct objlist *ob1, struct objlist *ob2)
if (kv->type == PROP_ENDLIST) break;
if (kv->type == PROP_STRING) {
if (!strcmp(kv->key, "_tag")) {
for (tag == kv->value.string; *tag != '\0'; tag++) {
for (tag = kv->value.string; *tag != '\0'; tag++) {
if (*tag == '(') opentags++;
else if (*tag == ')') opentags--;
}