From a40246d3123d4bd0d1be638cd7f7b91274d8f23d Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sat, 26 Oct 2013 15:14:54 +0200 Subject: TagFile: use Path instead of const char * --- src/DecoderThread.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/DecoderThread.cxx') diff --git a/src/DecoderThread.cxx b/src/DecoderThread.cxx index a018b3502..5d36a915d 100644 --- a/src/DecoderThread.cxx +++ b/src/DecoderThread.cxx @@ -275,7 +275,7 @@ static void decoder_load_replay_gain(Decoder &decoder, const char *path_fs) { ReplayGainInfo info; - if (replay_gain_ape_read(path_fs, info)) + if (replay_gain_ape_read(Path::FromFS(path_fs), info)) decoder_replay_gain(decoder, &info); } -- cgit v1.2.3