Merge pull request #1135 from cxd4/trying

[Common] s/tryinng/trying
This commit is contained in:
zilmar 2016-06-29 17:02:53 +10:00 committed by GitHub
commit 97816b15c9
1 changed files with 2 additions and 2 deletions

View File

@ -155,7 +155,7 @@ bool CFile::Open(const char * lpszFileName, uint32_t nOpenFlags)
if ((nOpenFlags & CFileBase::modeWrite) == CFileBase::modeWrite ||
(nOpenFlags & CFileBase::modeReadWrite) == CFileBase::modeReadWrite)
{
printf("tryinng to open %s (rb+)\n",lpszFileName);
printf("Trying to open %s (rb+).\n", lpszFileName);
m_hFile = fopen(lpszFileName, "rb+");
if (m_hFile != NULL)
{
@ -164,7 +164,7 @@ bool CFile::Open(const char * lpszFileName, uint32_t nOpenFlags)
}
else if ((nOpenFlags & CFileBase::modeRead) == CFileBase::modeRead)
{
printf("tryinng to open %s (rb)\n",lpszFileName);
printf("Trying to open %s (rb).\n", lpszFileName);
m_hFile = fopen(lpszFileName, "rb");
if (m_hFile != NULL)
{