diff options
| author | Shauren <shauren.trinity@gmail.com> | 2015-08-16 18:08:03 +0200 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2015-08-16 18:08:03 +0200 |
| commit | 222eaccc51b8d358c7b60d8def40d6461244ed31 (patch) | |
| tree | 02e0ff6164b4bae70d6513392a91638d033ff566 /src/server/authserver | |
| parent | 94f69fb1bcef103392ca27074ebb31ef2ebd27fb (diff) | |
Build fix for WheatyExceptionReport, c++ exceptions must not be thrown in SEH handlers
Diffstat (limited to 'src/server/authserver')
| -rw-r--r-- | src/server/authserver/Main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/authserver/Main.cpp b/src/server/authserver/Main.cpp index 7342a638958..1568e3acf60 100644 --- a/src/server/authserver/Main.cpp +++ b/src/server/authserver/Main.cpp @@ -103,7 +103,7 @@ int main(int argc, char** argv) sLog->RegisterAppender<AppenderDB>(); sLog->Initialize(nullptr); - TC_LOG_INFO("server.authserver", "%s (authserver)", Revision::GetFullVersion().c_str()); + TC_LOG_INFO("server.authserver", "%s (authserver)", Revision::GetFullVersion()); TC_LOG_INFO("server.authserver", "<Ctrl-C> to stop.\n"); TC_LOG_INFO("server.authserver", "Using configuration file %s.", configFile.c_str()); TC_LOG_INFO("server.authserver", "Using SSL version: %s (library: %s)", OPENSSL_VERSION_TEXT, SSLeay_version(SSLEAY_VERSION)); |
