summaryrefslogtreecommitdiffstats
path: root/src/server/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/main.cpp')
-rw-r--r--src/server/main.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/server/main.cpp b/src/server/main.cpp
index 0c09f91..02fd399 100644
--- a/src/server/main.cpp
+++ b/src/server/main.cpp
@@ -8,7 +8,8 @@
using std::cout;
using std::endl;
-void usage() {
+void usage()
+{
cout << "USAGE pvsmgr [OPTIONS]" << endl;
cout << "OPTIONS: " << endl;
cout << "--manager-only" << endl;
@@ -33,7 +34,7 @@ int main(int argc, char** argv)
Global::manager_only = true;
break;
} else if (a.startsWith("--config=")) {
- Global::setIniPath(a.mid(9));
+ Global::setIniPath(a.mid(9));
} else if (a == "--usage" || a == "--help") {
usage();
exit(0);