From c39dde2244f7bac0b2455fcf90885543f598ec0d Mon Sep 17 00:00:00 2001 From: Andrzej Rybczak Date: Fri, 30 Mar 2012 02:41:36 +0200 Subject: [PATCH] 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 88d77e19..768bf652 100644 --- a/src/lyrics.cpp +++ b/src/lyrics.cpp @@ -356,7 +356,7 @@ void Lyrics::Load() pthread_create(&itsDownloader, 0, DownloadWrapper, this); isDownloadInProgress = 1; # else - *w << "Local lyrics not found. As ncmpcpp has been compiled without curl support, you can put appropriate lyrics into " << itsFolder << " 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 }