fix VC6 compile error

This commit is contained in:
Chris Danford
2003-11-29 11:17:30 +00:00
parent 63a898e0ca
commit f7e136940a
+1 -1
View File
@@ -39,7 +39,7 @@ public:
void Close();
bool IsOpen() { return (mFP == NULL); }
bool AtEOF() { return feof(mFP); }
bool AtEOF() { return !!feof(mFP); }
int GetError() { return ferror(mFP); }
FILE *GetFilePointer() { return mFP; }