summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2021-08-27 11:38:24 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2021-08-27 19:47:43 +0900
commitbb98c0c23e71c340e6d4c8486b805f01e072b70f (patch)
tree7ed7838a788bd48e2af717a0c758aec2c4092ee2
parent87208f36caa2451854e949bc270068d2712ebfc4 (diff)
downloadtdemultimedia-bb98c0c2.tar.gz
tdemultimedia-bb98c0c2.zip
Renamed Arts_InputStream::seek() to Arts_InputStream::lseek() following renaming in Akode module.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--akode_artsplugin/arts_inputstream.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/akode_artsplugin/arts_inputstream.h b/akode_artsplugin/arts_inputstream.h
index 785378cb..c6f61e2c 100644
--- a/akode_artsplugin/arts_inputstream.h
+++ b/akode_artsplugin/arts_inputstream.h
@@ -75,7 +75,7 @@ public:
long write(const char*, long) {
return -1;
}
- ssize_t seek(long to, int whence) {
+ ssize_t lseek(long to, int whence) {
if(!m_open || !seekable()) return -1;
arts_debug("akode: InputStream seeking");