Skip to content

Commit

Permalink
style
Browse files Browse the repository at this point in the history
  • Loading branch information
cxd4 committed Jun 29, 2016
1 parent 3296c92 commit c83f3d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Common/FileClass.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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("trying to open %s (rb+)\n", lpszFileName);
printf("Trying to open %s (rb+).\n", lpszFileName);
m_hFile = fopen(lpszFileName, "rb+");
if (m_hFile != NULL)
{
Expand All @@ -164,7 +164,7 @@ bool CFile::Open(const char * lpszFileName, uint32_t nOpenFlags)
}
else if ((nOpenFlags & CFileBase::modeRead) == CFileBase::modeRead)
{
printf("trying to open %s (rb)\n", lpszFileName);
printf("Trying to open %s (rb).\n", lpszFileName);
m_hFile = fopen(lpszFileName, "rb");
if (m_hFile != NULL)
{
Expand Down

0 comments on commit c83f3d5

Please sign in to comment.