Fix warning. (Is g++ even smart enough to know that int(-1) == unsigned(-1) is true?)

This commit is contained in:
Steve Checkoway
2004-06-07 03:23:36 +00:00
parent 65fa5667d9
commit 4f5fc8b27d
+1 -1
View File
@@ -35,7 +35,7 @@ private:
mutable RageFile m_file; // mutable because reading from a file is not a const operation
byte *m_space;
unsigned int m_len;
int m_len;
bool m_waiting;
};