summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLaszlo Papp <lpapp@kde.org>2011-12-07 19:16:05 +0200
committerLaszlo Papp <ext-laszlo.papp@nokia.com>2011-12-07 19:16:05 +0200
commit6ee5f6c4c2294301d372b854e01f9cb56b2db9fa (patch)
treed06e5f00663de846c1157f41b0be699bde75c54b
parentfe633ce503d5b64fc0676d2325a607a7c617a55b (diff)
Fix the typo of the variable name inside the qalflacaudiodecoder class
-rw-r--r--src/decoders/qalflacaudiodecoder.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decoders/qalflacaudiodecoder.cpp b/src/decoders/qalflacaudiodecoder.cpp
index 8e94a57..4195aac 100644
--- a/src/decoders/qalflacaudiodecoder.cpp
+++ b/src/decoders/qalflacaudiodecoder.cpp
@@ -91,7 +91,7 @@ QALFlacAudioDecoder::Private::tellCallback(const FLAC__StreamDecoder *decoder, F
{
Q_UNUSED(decoder)
- *absolute_path_offset = reinterpret_cast<QALFlacAudioDecoder::Private*>(client_data)->file.pos();
+ *absolute_byte_offset = reinterpret_cast<QALFlacAudioDecoder::Private*>(client_data)->file.pos();
return FLAC__STREAM_DECODER_TELL_STATUS_OK;
}