From ab96f497667b70cf55404b28b2bda9076e435c09 Mon Sep 17 00:00:00 2001 From: yhirose Date: Fri, 13 Mar 2020 16:36:33 -0400 Subject: [PATCH] Fixed problem that line end char is missing on start messagein simple server example --- example/simplesvr.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/simplesvr.cc b/example/simplesvr.cc index 841bc35..a84bb1e 100644 --- a/example/simplesvr.cc +++ b/example/simplesvr.cc @@ -127,7 +127,7 @@ int main(int argc, const char **argv) { return 1; } - cout << "The server started at port " << port << "..."; + cout << "The server started at port " << port << "..." << endl; svr.listen("localhost", port);