diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2021-08-27 11:38:24 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2021-08-27 19:47:43 +0900 |
commit | bb98c0c23e71c340e6d4c8486b805f01e072b70f (patch) | |
tree | 7ed7838a788bd48e2af717a0c758aec2c4092ee2 | |
parent | 87208f36caa2451854e949bc270068d2712ebfc4 (diff) | |
download | tdemultimedia-bb98c0c23e71c340e6d4c8486b805f01e072b70f.tar.gz tdemultimedia-bb98c0c23e71c340e6d4c8486b805f01e072b70f.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.h | 2 |
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"); |