summaryrefslogtreecommitdiff
path: root/common/file.cpp
diff options
context:
space:
mode:
authorleo2001-03-26 17:19:07 +0000
committerleo2001-03-26 17:19:07 +0000
commite8c9abea837366ee7dd5f4668ee459a26be32e9c (patch)
treec0127427c7ca4b9b86343b6ad28c5835ee87cbef /common/file.cpp
parent1a38c98fd8611b7f8c5d3d22238dc82185ab7fc4 (diff)
Fixed the return value of FileMem::Seek
git-svn-id: http://svn.leocad.org/trunk@262 c7d43263-9d01-0410-8a33-9dba5d9f93d6
Diffstat (limited to 'common/file.cpp')
-rw-r--r--common/file.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/file.cpp b/common/file.cpp
index 435c6c8..31c1076 100644
--- a/common/file.cpp
+++ b/common/file.cpp
@@ -440,7 +440,7 @@ unsigned long FileMem::Seek(long lOff, int nFrom)
m_nPosition = lNewPos;
- return m_nPosition;
+ return 0;
}
unsigned long FileDisk::Seek(long lOff, int nFrom)