From fdab366627a6cf17d0b3039c0126ff05765f28b6 Mon Sep 17 00:00:00 2001 From: Tim Edwards Date: Mon, 12 Dec 2016 11:51:24 -0500 Subject: [PATCH] Corrected typo with == vs. = --- base/netgen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/netgen.c b/base/netgen.c index 14c6215..f85ee3b 100644 --- a/base/netgen.c +++ b/base/netgen.c @@ -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--; }