diff options
Diffstat (limited to 'net/server/http_server.cc')
-rw-r--r-- | net/server/http_server.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/server/http_server.cc b/net/server/http_server.cc index 4f1fb08..a0c9a3a 100644 --- a/net/server/http_server.cc +++ b/net/server/http_server.cc @@ -62,7 +62,7 @@ void HttpServer::Send200(int connection_id, } void HttpServer::Send404(int connection_id) { - Send(connection_id, HTTP_NOT_FOUND, "", "text/html"); + Send(connection_id, HTTP_NOT_FOUND, std::string(), "text/html"); } void HttpServer::Send500(int connection_id, const std::string& message) { |