int/char -> bool in File

This commit is contained in:
Brian Rasmusson
2016-10-19 12:13:06 +02:00
parent 4af7d63b2d
commit f4859a3c6b
2 changed files with 3 additions and 3 deletions

@ -12,7 +12,7 @@
// THE FOLLOWING IS ALL STATIC 'CUZ IT'S THE FD POOL
// if someone is using a file we must make sure this is true...
static int s_isInitialized = false;
static bool s_isInitialized = false;
static GbMutex s_mtx;
static int64_t s_timestamps [ MAX_NUM_FDS ]; // when was it last accessed

4
File.h

@ -148,8 +148,8 @@ private:
int m_flags;
//int m_permissions;
char m_calledOpen;
char m_calledSet;
bool m_calledOpen;
bool m_calledSet;
bool m_forceRename;