fix warning (unreachable code), comment

This commit is contained in:
Glenn Maynard
2004-05-14 21:51:25 +00:00
parent dee215ea0b
commit 3b8a811c80
2 changed files with 1 additions and 2 deletions
-1
View File
@@ -95,7 +95,6 @@ unsigned int RageFileStore::CopyRangeTo2(BufferedTransformation &target, unsigne
m_file.Seek( current );
return blockedBytes;
}
m_file.Seek( current );
}
// TODO: figure out what happens on cin
+1 -1
View File
@@ -33,7 +33,7 @@ public:
private:
void StoreInitialize(const NameValuePairs &parameters);
mutable RageFile m_file; // mutable so that we can call RageFile::GetFileSize()
mutable RageFile m_file; // mutable because reading from a file is not a const operation
byte *m_space;
unsigned int m_len;
bool m_waiting;