mirror of
https://github.com/edubart/otclient.git
synced 2025-10-17 04:53:27 +02:00
Fix a warning in clang
This commit is contained in:
@@ -44,7 +44,7 @@ void crashHandler(int signum, siginfo_t* info, void* secret)
|
||||
ss << stdext::format("app name: %s\n", g_app.getName());
|
||||
ss << stdext::format("app version: %s\n", g_app.getVersion());
|
||||
ss << stdext::format("build compiler: %s\n", BUILD_COMPILER);
|
||||
ss << stdext::format("build date: %s\n", BUILD_DATE);
|
||||
ss << stdext::format("build date: %s\n", __DATE__);
|
||||
ss << stdext::format("build type: %s\n", BUILD_TYPE);
|
||||
ss << stdext::format("build revision: %s (%s)\n", BUILD_REVISION, BUILD_COMMIT);
|
||||
ss << stdext::format("crash date: %s\n", stdext::date_time_string());
|
||||
|
@@ -114,7 +114,7 @@ LONG CALLBACK ExceptionHandler(LPEXCEPTION_POINTERS e)
|
||||
ss << stdext::format("app name: %s\n", g_app.getName().c_str());
|
||||
ss << stdext::format("app version: %s\n", g_app.getVersion().c_str());
|
||||
ss << stdext::format("build compiler: %s\n", BUILD_COMPILER);
|
||||
ss << stdext::format("build date: %s\n", BUILD_DATE);
|
||||
ss << stdext::format("build date: %s\n", __DATE__);
|
||||
ss << stdext::format("build type: %s\n", BUILD_TYPE);
|
||||
ss << stdext::format("build revision: %s (%s)\n", BUILD_REVISION, BUILD_COMMIT);
|
||||
ss << stdext::format("crash date: %s\n", stdext::date_time_string().c_str());
|
||||
|
Reference in New Issue
Block a user