tag/id3: convert path from "wchar_t*" to "char*" for error message
This commit is contained in:
parent
3b71e2abef
commit
493f74d94d
@ -31,6 +31,7 @@
|
|||||||
#include "Riff.hxx"
|
#include "Riff.hxx"
|
||||||
#include "Aiff.hxx"
|
#include "Aiff.hxx"
|
||||||
#include "fs/Path.hxx"
|
#include "fs/Path.hxx"
|
||||||
|
#include "fs/NarrowPath.hxx"
|
||||||
#include "fs/FileSystem.hxx"
|
#include "fs/FileSystem.hxx"
|
||||||
|
|
||||||
#include <id3tag.h>
|
#include <id3tag.h>
|
||||||
@ -486,7 +487,8 @@ tag_id3_load(Path path_fs, Error &error)
|
|||||||
{
|
{
|
||||||
FILE *file = FOpen(path_fs, PATH_LITERAL("rb"));
|
FILE *file = FOpen(path_fs, PATH_LITERAL("rb"));
|
||||||
if (file == nullptr) {
|
if (file == nullptr) {
|
||||||
error.FormatErrno("Failed to open file %s", path_fs.c_str());
|
error.FormatErrno("Failed to open file %s",
|
||||||
|
NarrowPath(path_fs).c_str());
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user