git.cweiske.de
/
enigma2.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
lib/base/console.cpp: fix eConsoleAppContainer write (when called with one string...
[enigma2.git]
/
lib
/
base
/
rawfile.cpp
diff --git
a/lib/base/rawfile.cpp
b/lib/base/rawfile.cpp
index d7f2a6551f28289db48e16f646031bc2ed1b41a8..c7e11feb308632d876b706105361ac3d81fd3081 100644
(file)
--- a/
lib/base/rawfile.cpp
+++ b/
lib/base/rawfile.cpp
@@
-227,3
+227,8
@@
int eRawFile::openFileUncached(int nr)
}
return ::open(filename.c_str(), O_RDONLY | O_LARGEFILE);
}
}
return ::open(filename.c_str(), O_RDONLY | O_LARGEFILE);
}
+
+off_t eRawFile::length()
+{
+ return m_totallength;
+}