aboutsummaryrefslogtreecommitdiffstats
path: root/src/blogc/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/blogc/main.c')
-rw-r--r--src/blogc/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/blogc/main.c b/src/blogc/main.c
index 992b9e7..35d9f69 100644
--- a/src/blogc/main.c
+++ b/src/blogc/main.c
@@ -223,7 +223,7 @@ main(int argc, char **argv)
bc_slist_t *s = blogc_source_parse_from_files(config, sources, &err);
if (err != NULL) {
- bc_error_print(err);
+ bc_error_print(err, "blogc");
rv = 2;
goto cleanup2;
}
@@ -250,7 +250,7 @@ main(int argc, char **argv)
bc_slist_t* l = blogc_template_parse_from_file(template, &err);
if (err != NULL) {
- bc_error_print(err);
+ bc_error_print(err, "blogc");
rv = 2;
goto cleanup3;
}