summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPatrick McDermott <pj@pehjota.net>2017-10-30 23:49:33 (EDT)
committer Patrick McDermott <pj@pehjota.net>2017-10-30 23:49:33 (EDT)
commitc29fc2bad3f973b3a80eb156b1d405c1de56d1ff (patch)
treee3ca92fb5e2623f546022f5652b647e6b3c6f895 /src
parent6318c3352efe2a44da46caecc624414639ff2121 (diff)
downloadmarquee-c29fc2bad3f973b3a80eb156b1d405c1de56d1ff.zip
marquee-c29fc2bad3f973b3a80eb156b1d405c1de56d1ff.tar.gz
marquee-c29fc2bad3f973b3a80eb156b1d405c1de56d1ff.tar.bz2
src/resources.c: Fix missing newlines in error document
Diffstat (limited to 'src')
-rw-r--r--src/resources.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/resources.c b/src/resources.c
index 853c8b2..32fe0c6 100644
--- a/src/resources.c
+++ b/src/resources.c
@@ -33,12 +33,12 @@ static const gchar *error_document =
"<meta charset=\"utf-8\">\n"
"<title>Resource Error</title>\n"
"</head>\n"
- "<body>"
+ "<body>\n"
"<h1>Resource Error</h1>\n"
"<p>Failed to load resource &ldquo;%s&rdquo;</p>\n"
"<p>%s</p>\n"
"</body>\n"
- "</html>";
+ "</html>\n";
void
mq_resource_response(MqApplication *application, const gchar *path,