flexelint

... thinks this statement is confusing.

Ref: 15f94d33
parent b1f81218
......@@ -350,7 +350,7 @@ VSB_cat(struct vsb *s, const char *str)
return (-1);
while (s->s_indent > 0 && (nl = strchr(str, '\n')) != NULL) {
l = nl - str + 1;
l = (nl - str) + 1;
if (VSB_bcat(s, str, l) < 0)
return (-1);
str += l;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment