Skip to content

Commit

Permalink
Update CueDocument.cpp
Browse files Browse the repository at this point in the history
fixed string type passed to logger so it compiles
  • Loading branch information
BlakeOrth committed May 31, 2013
1 parent ff5416b commit 7f6c9d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/CueDocument.cpp
Expand Up @@ -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;
}

Expand Down

0 comments on commit 7f6c9d4

Please sign in to comment.