diff options
Diffstat (limited to 'src/decoder/plugins/WavpackDecoderPlugin.cxx')
-rw-r--r-- | src/decoder/plugins/WavpackDecoderPlugin.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decoder/plugins/WavpackDecoderPlugin.cxx b/src/decoder/plugins/WavpackDecoderPlugin.cxx index 88fa2af56..248034350 100644 --- a/src/decoder/plugins/WavpackDecoderPlugin.cxx +++ b/src/decoder/plugins/WavpackDecoderPlugin.cxx @@ -405,7 +405,7 @@ wavpack_input_set_pos_rel(void *id, int32_t delta, int mode) WavpackInput &wpi = *wpin(id); InputStream &is = wpi.is; - InputStream::offset_type offset = delta; + offset_type offset = delta; switch (mode) { case SEEK_SET: break; |