diff options
author | Hollow011 <blake.orth@gmail.com> | 2013-05-31 01:52:33 -0500 |
---|---|---|
committer | Hollow011 <blake.orth@gmail.com> | 2013-05-31 01:52:33 -0500 |
commit | 7f6c9d40b0882f8dd84611a95dd9b3afbde0364f (patch) | |
tree | 4264551c3194bbb4efc071e34b84bdfb5e4e1389 | |
parent | ff5416b6c786da9cda7787495b99d85a9738ff05 (diff) |
Update CueDocument.cpp
fixed string type passed to logger so it compiles
-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; } |