From c0a2f7e7794e45296fd1fc8d77a59e1fd7cee337 Mon Sep 17 00:00:00 2001 From: tastytea Date: Tue, 16 Aug 2022 18:15:21 +0200 Subject: [PATCH] =?UTF-8?q?pass=20c=20strings=20to=20fmt=20(=E2=80=A6)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 81d2524..736ea56 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -129,7 +129,7 @@ int main(int argc, char *argv[]) << format(translate("Could not open {0:s}: {1:s}") .str() .c_str(), - e.path1(), e.what()); + e.path1().c_str(), e.what()); return_code = EXIT_FAILURE; } }