summaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorisanae <14251494+isanae@users.noreply.github.com>2019-07-19 04:54:47 -0400
committerisanae <14251494+isanae@users.noreply.github.com>2019-07-22 07:39:52 -0400
commitf49efd6d448dccd4100fa46e2ebf1690d97033cc (patch)
tree700e4be020963a2cdd7ff13c4003c59efa064201 /src/main.cpp
parentb3d0ddb0b75da4abd59cae1508d983945c8e235d (diff)
replaced formatSystemMessageQ() with formatSystemMessage()
replaced windowsErrorString() with formatSystemMessage()
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 5c5ce945..f53a574e 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -464,7 +464,7 @@ void preloadDll(const QString& filename)
if (!LoadLibraryW(dllPath.toStdWString().c_str())) {
const auto e = GetLastError();
- log::warn("failed to load {}: {}", dllPath, formatSystemMessageQ(e));
+ log::warn("failed to load {}: {}", dllPath, formatSystemMessage(e));
}
}