diff options
Diffstat (limited to '')
-rw-r--r-- | concat.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 { |