test/dump_rva2: fix TCHAR/char confusion on Windows

This commit is contained in:
Max Kellermann 2023-12-22 18:05:37 +01:00
parent a888b3a707
commit 833ca1e350
1 changed files with 2 additions and 1 deletions

View File

@ -7,6 +7,7 @@
#include "tag/ReplayGainInfo.hxx" #include "tag/ReplayGainInfo.hxx"
#include "thread/Mutex.hxx" #include "thread/Mutex.hxx"
#include "fs/Path.hxx" #include "fs/Path.hxx"
#include "fs/NarrowPath.hxx"
#include "input/InputStream.hxx" #include "input/InputStream.hxx"
#include "input/LocalOpen.hxx" #include "input/LocalOpen.hxx"
#include "util/PrintException.hxx" #include "util/PrintException.hxx"
@ -47,7 +48,7 @@ try {
return EXIT_FAILURE; return EXIT_FAILURE;
} }
const Path path = Path::FromFS(argv[1]); const FromNarrowPath path = argv[1];
Mutex mutex; Mutex mutex;