TagId3: fix printf string parameter

This commit is contained in:
Max Kellermann 2014-07-30 22:02:42 +02:00
parent f9e63dfd65
commit be36c0769a

View File

@ -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;
}