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-28 20:15:24 +0900
commit2adfc48397747763ffa81e5c2ed5f368e36244c0 (patch)
treefd311abfa2f9e04f208a9254efa411225e0ef6d2
parentc7cebfde022d5b255e9c478bcf83391da952dbe8 (diff)
downloadtdemultimedia-2adfc483.tar.gz
tdemultimedia-2adfc483.zip
Renamed Arts_InputStream::seek() to Arts_InputStream::lseek() following renaming in Akode module.r14.0.11
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit bb98c0c23e71c340e6d4c8486b805f01e072b70f)
-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");