From 853557fe4e567a9f14141a67b13a27a1285fb468 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mika=C3=ABl=20Capelle?= Date: Sun, 24 May 2020 23:47:48 +0200 Subject: [PATCH] Fix mistake in log. --- src/base_script.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/base_script.cpp b/src/base_script.cpp index ce94e66..b2523ac 100644 --- a/src/base_script.cpp +++ b/src/base_script.cpp @@ -146,7 +146,7 @@ namespace CSharp { auto sourceEntry = g.SourceTree->find(to_qstring(p_strFrom)); if (!sourceEntry) { - log::warn("File '{}' not found in the archive.", sourceEntry->path()); + log::warn("File '{}' not found in the archive.", to_wstring(p_strFrom)); return false; }