aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorRaghuram Subramani <raghus2247@gmail.com>2025-07-28 08:07:22 +0530
committerRaghuram Subramani <raghus2247@gmail.com>2025-07-28 08:07:22 +0530
commit120104bc03141c2b59325e6882fd9e2e6b335225 (patch)
tree98e90048bec2553a8369ded9711d347e01df9bef /src/main.c
parent736600639388798974f9a2d4187d5c33ac5e27d7 (diff)
engine: ingest->engine_ingest
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);
}