From 2c222f14103a1c3b6e29ad5fcd84e92594665dbe Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Wed, 15 Apr 2020 20:25:26 -0400 Subject: Wrap subthreads in
with reply count --- concat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'concat.c') diff --git a/concat.c b/concat.c index 04d2e27..94f9bed 100644 --- a/concat.c +++ b/concat.c @@ -81,7 +81,7 @@ static int concatHTML(FILE *file, struct List thread) { for (size_t i = 0; i < thread.len; ++i) { if (thread.ptr[i].type == List) { error = 0 - || htmlSubthreadOpen(file) + || htmlSubthreadOpen(file, thread.ptr[i].list) || concatHTML(file, thread.ptr[i].list) || htmlSubthreadClose(file); } else { -- cgit 1.4.1