diff options
author | wsoltys <wiso@xbmc.org> | 2013-05-31 00:08:49 -0700 |
---|---|---|
committer | wsoltys <wiso@xbmc.org> | 2013-05-31 00:08:49 -0700 |
commit | 0ccc594d71947cd9878987222d809220da7932ea (patch) | |
tree | 4264551c3194bbb4efc071e34b84bdfb5e4e1389 | |
parent | ff5416b6c786da9cda7787495b99d85a9738ff05 (diff) | |
parent | 7f6c9d40b0882f8dd84611a95dd9b3afbde0364f (diff) |
Merge pull request #2802 from Hollow011/masterGotham_alpha4
Fixes build broken by #2789
-rw-r--r-- | xbmc/CueDocument.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |