aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index fefa2b9..ea1efd3 100644
--- a/src/main.c
+++ b/src/main.c
@@ -75,7 +75,7 @@ handle_file(const char *path)
MMIOT *doc = mkd_string(buffer, size, 0);
template_write(base_template, NULL, out, doc, true);
} else if (strlen(buffer) != 0) {
- list_t *content_headers = ingest(&buffer);
+ list_t *content_headers = engine_ingest(&buffer);
template_write(base_template, content_headers, out, buffer, false);
list_delete(content_headers);
}