Skip to content

Commit

Permalink
[WIN32] fixed logging.
Browse files Browse the repository at this point in the history
  • Loading branch information
WiSo committed Oct 3, 2012
1 parent 0f21644 commit 88dff97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/filesystem/windows/WINFileSMB.cpp
Expand Up @@ -84,7 +84,7 @@ bool CWINFileSMB::Open(const CURL& url)
m_hFile.attach(CreateFileW(strWFile.c_str(), GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, NULL));
if (!m_hFile.isValid())
{
CLog::Log(LOGERROR,"CWINFileSMB: Unable to open file '%s' Error '%d%",strWFile.c_str(), GetLastError());
CLog::Log(LOGERROR,"CWINFileSMB: Unable to open file %s Error: %d", strFile.c_str(), GetLastError());
return false;
}
}
Expand Down

0 comments on commit 88dff97

Please sign in to comment.