aboutsummaryrefslogtreecommitdiff
path: root/src/template.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/template.c')
-rw-r--r--src/template.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/template.c b/src/template.c
index 6949068..105a8c3 100644
--- a/src/template.c
+++ b/src/template.c
@@ -197,6 +197,9 @@ struct env *env_new(char *dirname) {
strcpy(name, de->d_name);
char *tmpl = read_file(name);
+ #if DEBUG
+ printf("Parsing template from file %s: %s\n", name, tmpl);
+ #endif
mpc_ast_t *ast = parse(tmpl);
free(tmpl);
@@ -242,7 +245,7 @@ char *read_file(char *filename) {
}
unsigned int read = 0;
- while ( (read = fread(input, 1, BUFSIZ, f)) > 0) {
+ while ( (read = fread(input + read, 1, BUFSIZ, f)) > 0) {
size += read;
input = realloc(input, size + BUFSIZ);
}