From 4b5e6898cd83ec6a1b8246123e5ba1dc33fa80f2 Mon Sep 17 00:00:00 2001 From: tastytea Date: Tue, 16 Aug 2022 18:10:15 +0200 Subject: [PATCH] pass c strings to fmt (and one more) --- src/zip.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/zip.cpp b/src/zip.cpp index e52e556..e4e2b12 100644 --- a/src/zip.cpp +++ b/src/zip.cpp @@ -56,7 +56,7 @@ std::vector list(const fs::path &filepath) "Skipping in-EPUB file.\n") .str() .c_str(), - filepath); + filepath.c_str()); continue; } toc.emplace_back(in_epub_filepath);