From 7f6c9d40b0882f8dd84611a95dd9b3afbde0364f Mon Sep 17 00:00:00 2001 From: Hollow011 Date: Fri, 31 May 2013 01:52:33 -0500 Subject: Update CueDocument.cpp fixed string type passed to logger so it compiles --- xbmc/CueDocument.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xbmc/CueDocument.cpp b/xbmc/CueDocument.cpp index 449364977b..5d85e5d27b 100644 --- a/xbmc/CueDocument.cpp +++ b/xbmc/CueDocument.cpp @@ -377,7 +377,7 @@ bool CCueDocument::ResolvePath(CStdString &strPath, const CStdString &strBase) return true; } } - CLog::Log(LOGERROR,"Could not find '%s' referenced in cue, case sensitivity issue?", strPath); + CLog::Log(LOGERROR,"Could not find '%s' referenced in cue, case sensitivity issue?", strPath.c_str()); return false; } -- cgit v1.2.3