From 2cb16dfcffb232d275276cfe0a2e006ef8df91f0 Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Fri, 23 May 2025 12:01:20 +0200 Subject: [RTTI] Fix typo in some log calls --- plugins/rtti/plugin.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'plugins/rtti/plugin.cpp') diff --git a/plugins/rtti/plugin.cpp b/plugins/rtti/plugin.cpp index 2cf4b973..0f45a5b9 100644 --- a/plugins/rtti/plugin.cpp +++ b/plugins/rtti/plugin.cpp @@ -29,7 +29,7 @@ void RTTIAnalysis(const Ref& analysisContext) } catch (std::exception& e) { - LogErrorF("MSVC RTTI Analysis failed with uncaught exception: %s", e.what()); + LogError("MSVC RTTI Analysis failed with uncaught exception: %s", e.what()); } } @@ -41,7 +41,7 @@ void RTTIAnalysis(const Ref& analysisContext) } catch (std::exception& e) { - LogErrorF("Itanium RTTI Analysis failed with uncaught exception: %s", e.what()); + LogError("Itanium RTTI Analysis failed with uncaught exception: %s", e.what()); } } @@ -60,7 +60,7 @@ void VFTAnalysis(const Ref& analysisContext) } catch (std::exception& e) { - LogErrorF("MSVC VFT Analysis failed with uncaught exception: %s", e.what()); + LogError("MSVC VFT Analysis failed with uncaught exception: %s", e.what()); } try @@ -71,7 +71,7 @@ void VFTAnalysis(const Ref& analysisContext) } catch (std::exception& e) { - LogErrorF("Itanium VFT Analysis failed with uncaught exception: %s", e.what()); + LogError("Itanium VFT Analysis failed with uncaught exception: %s", e.what()); } } -- cgit v1.3.1