changeset 1919:f5d1037effc9

Remove extra line break for onError
author Adam Chlipala <adam@chlipala.net>
date Sun, 01 Dec 2013 16:28:02 -0500
parents c3c84fd38815
children 2f33d9a51765
files src/c/urweb.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/c/urweb.c	Fri Nov 29 08:12:57 2013 -0500
+++ b/src/c/urweb.c	Sun Dec 01 16:28:02 2013 -0500
@@ -4092,7 +4092,7 @@
       else
         uw_write_header(ctx, "Status: ");
       uw_write_header(ctx, "500 Internal Server Error\r\n");
-      uw_write_header(ctx, "Content-type: text/html\r\n\r\n");
+      uw_write_header(ctx, "Content-type: text/html\r\n");
       uw_write(ctx, begin_xhtml);
       ctx->app->on_error(ctx, msg);
       uw_write(ctx, "</html>");