diff options
author | Shocker <shocker@freakz.ro> | 2012-10-28 00:37:34 +0300 |
---|---|---|
committer | Shocker <shocker@freakz.ro> | 2012-10-28 00:37:34 +0300 |
commit | 08868574c7cef1f535108da662c89dee6a32b790 (patch) | |
tree | 09a4b7f3cace0c96da553adf1bff168bbed6777f /src/server/authserver/Main.cpp | |
parent | 4354882ba2299817a6fc02b22849ebd9863cbd99 (diff) | |
parent | 3b4b536fd04d71aae8d79906a7c552fde7c6a9f1 (diff) |
Merge branch '4.3.4' of github.com:TrinityCore/TrinityCore into 4.3.4
Diffstat (limited to 'src/server/authserver/Main.cpp')
-rwxr-xr-x | src/server/authserver/Main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/server/authserver/Main.cpp b/src/server/authserver/Main.cpp index 011210dd95b..90d112a1433 100755 --- a/src/server/authserver/Main.cpp +++ b/src/server/authserver/Main.cpp @@ -86,7 +86,7 @@ extern int main(int argc, char **argv) { if (++c >= argc) { - printf("Runtime-Error: -c option requires an input argument"); + printf("Runtime-Error: -c option requires an input argument\n"); usage(argv[0]); return 1; } @@ -98,8 +98,8 @@ extern int main(int argc, char **argv) if (!ConfigMgr::Load(cfg_file)) { - printf("Invalid or missing configuration file : %s", cfg_file); - printf("Verify that the file exists and has \'[authserver]\' written in the top of the file!"); + printf("Invalid or missing configuration file : %s\n", cfg_file); + printf("Verify that the file exists and has \'[authserver]\' written in the top of the file!\n"); return 1; } |