refactor: remove redundant casts

(cherry picked from commit 347c8bbbd6)
This commit is contained in:
ii14
2023-04-07 20:32:54 +02:00
committed by github-actions[bot]
parent e2ab8f78c4
commit 67dc341aa0
28 changed files with 101 additions and 111 deletions

View File

@@ -1832,7 +1832,7 @@ static char *get_str_line(int c, void *cookie, int indent, bool do_concat)
if (!concat_continued_line(&ga, 400, line, (size_t)(next_eol - line))) {
break;
}
eol = (char *)next_eol;
eol = next_eol;
}
}
ga_append(&ga, NUL);