diff options
Diffstat (limited to 'net/tools/fetch/fetch_server.cc')
-rw-r--r-- | net/tools/fetch/fetch_server.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/tools/fetch/fetch_server.cc b/net/tools/fetch/fetch_server.cc index 830cd18..34c7c83 100644 --- a/net/tools/fetch/fetch_server.cc +++ b/net/tools/fetch/fetch_server.cc @@ -36,7 +36,8 @@ int main(int argc, char**argv) { // Do work here. MessageLoop loop; - HttpServer server("", 80); // TODO(mbelshe): make port configurable + HttpServer server(std::string(), + 80); // TODO(mbelshe): make port configurable MessageLoop::current()->Run(); if (parsed_command_line.HasSwitch("stats")) { |