summaryrefslogtreecommitdiffabout
Unidiff
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--html.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/html.c b/html.c
index 937b5e7..bddb04d 100644
--- a/html.c
+++ b/html.c
@@ -13,2 +13,3 @@
13#include <string.h> 13#include <string.h>
14#include <errno.h>
14 15
@@ -170,4 +171,7 @@ int html_include(const char *filename)
170 171
171 if (!(f = fopen(filename, "r"))) 172 if (!(f = fopen(filename, "r"))) {
173 fprintf(stderr, "[cgit] Failed to include file %s: %s (%d).\n",
174 filename, strerror(errno), errno);
172 return -1; 175 return -1;
176 }
173 while((len = fread(buf, 1, 4096, f)) > 0) 177 while((len = fread(buf, 1, 4096, f)) > 0)