Commit be36c076 authored by Max Kellermann's avatar Max Kellermann

TagId3: fix printf string parameter

parent f9e63dfd
......@@ -514,7 +514,7 @@ tag_id3_load(Path path_fs, Error &error)
{
FILE *file = FOpen(path_fs, "rb");
if (file == nullptr) {
error.FormatErrno("Failed to open file %s", path_fs);
error.FormatErrno("Failed to open file %s", path_fs.c_str());
return nullptr;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment