fix build bustage with 64 bit seekable streams

This commit is contained in:
bienvenu%nventure.com 2004-04-13 15:21:09 +00:00
Родитель 9e210e5568
Коммит 4adc569978
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -365,7 +365,7 @@ nsFileInputStream::IsNonBlocking(PRBool *aNonBlocking)
}
NS_IMETHODIMP
nsFileInputStream::Seek(PRInt32 aWhence, PRInt32 aOffset)
nsFileInputStream::Seek(PRInt32 aWhence, PRInt64 aOffset)
{
if (!mFD) {
if (mBehaviorFlags & REOPEN_ON_REWIND) {

Просмотреть файл

@ -84,7 +84,7 @@ public:
NS_DECL_NSILINEINPUTSTREAM
// Overrided from nsFileStream
NS_IMETHOD Seek(PRInt32 aWhence, PRInt32 aOffset);
NS_IMETHOD Seek(PRInt32 aWhence, PRInt64 aOffset);
nsFileInputStream() : nsFileStream()
{