Skip to content

Commit

Permalink
update r880
Browse files Browse the repository at this point in the history
  • Loading branch information
srz-zumix committed Jun 20, 2015
1 parent 8eeb5a4 commit 0b4b20f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/internal/iutest_file.hpp
Expand Up @@ -209,7 +209,7 @@ IUTEST_PRAGMA_CRT_SECURE_WARN_DISABLE_END()
//! サイズ取得
virtual size_t GetSize(void) IUTEST_CXX_OVERRIDE
{
if(m_fp == nullptr) return 0;
if(m_fp == NULL) return 0;
const long pre = ftell(m_fp);
if(pre == -1) return 0;
if(fseek(m_fp, 0, SEEK_END) != 0) return 0;
Expand Down

0 comments on commit 0b4b20f

Please sign in to comment.