From 7b43c9270a4a8b727f87c2b23f7c61520cdc3734 Mon Sep 17 00:00:00 2001 From: Runxi Yu Date: Fri, 14 Mar 2025 17:17:30 +0800 Subject: [PATCH] Remove extra space --- main.ha | 2 +- diff --git a/main.ha b/main.ha index b52f1112771dd7d470220cecf68f2260ec0acc08..39616b5cacaed3e7f36e3a3230c6306061697a2a 100644 --- a/main.ha +++ b/main.ha @@ -58,7 +58,7 @@ }; }; }; -export fn handlereq(conn: io::handle, request: *http::request) (void | io::error | nomem) = { +export fn handlereq(conn: io::handle, request: *http::request) (void | io::error | nomem) = { htmpl::write(conn, "HTTP/1.1 200 OK\r\n")?; htmpl::write(conn, "Content-Type: text/html\r\n\r\n")?; tp_index(conn)?; -- 2.48.1