diff options
author | Raghuram Subramani <raghus2247@gmail.com> | 2025-07-30 20:18:13 +0530 |
---|---|---|
committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-07-30 20:18:13 +0530 |
commit | 8e6dad06fe4c0bb83f44ff016c3814b9c89f385b (patch) | |
tree | ddd4c6339f6c73c88f8c03c05e29c9774b09eeae /src/msg.c | |
parent | 48016ebbe55051ea4745c57cbc937d2a66c22ef9 (diff) |
template: template_create() must accept template name
Diffstat (limited to 'src/msg.c')
-rw-r--r-- | src/msg.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -128,7 +128,7 @@ run(void) if (config == NULL) return EXIT_FAILURE; - base_template = template_create(); + base_template = template_create(BASE_TEMPLATE); int err = mkdir(msg->output_directory, 0700); if (err != 0 && errno != EEXIST) { |