aboutsummaryrefslogtreecommitdiffstats
path: root/vespaclient/src/vespa/vespaclient/vesparoute/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'vespaclient/src/vespa/vespaclient/vesparoute/main.cpp')
-rw-r--r--vespaclient/src/vespa/vespaclient/vesparoute/main.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/vespaclient/src/vespa/vespaclient/vesparoute/main.cpp b/vespaclient/src/vespa/vespaclient/vesparoute/main.cpp
index bc55cc18366..d34989b30ee 100644
--- a/vespaclient/src/vespa/vespaclient/vesparoute/main.cpp
+++ b/vespaclient/src/vespa/vespaclient/vesparoute/main.cpp
@@ -3,12 +3,10 @@
#include "application.h"
#include <vespa/vespalib/util/signalhandler.h>
-int
-main(int argc, char** argv)
-{
+int main(int argc, char** argv) {
vespalib::SignalHandler::PIPE.ignore();
vesparoute::Application app;
- int ret = app.Entry(argc, argv);
+ int ret = app.main(argc, argv);
if (ret) {
printf("Non-zero exit status: %d\n", ret);
}