From 282f100aef206aae873f50be6aab8924a1201320 Mon Sep 17 00:00:00 2001 From: Andrzej Rybczak Date: Tue, 2 Apr 2013 01:52:22 +0200 Subject: [PATCH] lyrics: fix compilation --without-curl --- src/lyrics.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lyrics.cpp b/src/lyrics.cpp index 62ceb3a1..198a7f87 100644 --- a/src/lyrics.cpp +++ b/src/lyrics.cpp @@ -337,7 +337,7 @@ void Lyrics::Load() pthread_create(&itsDownloader, 0, DownloadWrapper, this); isDownloadInProgress = 1; # else - w << U("Local lyrics not found. As ncmpcpp has been compiled without curl support, you can put appropriate lyrics into ") << TO_WSTRING(Config.lyrics_directory) << U(" directory (file syntax is \"$ARTIST - $TITLE.txt\") or recompile ncmpcpp with curl support."); + w << "Local lyrics not found. As ncmpcpp has been compiled without curl support, you can put appropriate lyrics into " << Config.lyrics_directory << " directory (file syntax is \"$ARTIST - $TITLE.txt\") or recompile ncmpcpp with curl support."; w.flush(); # endif }