diff options
author | Max Kellermann <max@duempel.org> | 2014-07-09 20:03:11 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-07-09 20:03:11 +0200 |
commit | 9ddb5931fbcbde1cde36dcc698db5fbd718e3dc7 (patch) | |
tree | c0345901228b284b3fa7076b519ac25c1175eb1d /src/decoder | |
parent | 913064d6cc0dcfddb4eee0dcddacc5c82fa31448 (diff) | |
download | mpd-9ddb5931fbcbde1cde36dcc698db5fbd718e3dc7.tar.gz mpd-9ddb5931fbcbde1cde36dcc698db5fbd718e3dc7.tar.xz mpd-9ddb5931fbcbde1cde36dcc698db5fbd718e3dc7.zip |
decoder/audiofile: remove unused Error variable
Diffstat (limited to '')
-rw-r--r-- | src/decoder/plugins/AudiofileDecoderPlugin.cxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/decoder/plugins/AudiofileDecoderPlugin.cxx b/src/decoder/plugins/AudiofileDecoderPlugin.cxx index 994a5a109..cd7021631 100644 --- a/src/decoder/plugins/AudiofileDecoderPlugin.cxx +++ b/src/decoder/plugins/AudiofileDecoderPlugin.cxx @@ -114,7 +114,6 @@ audiofile_file_seek(AFvirtualfile *vfile, AFfileoffset _offset, if (is_relative) offset += is.GetOffset(); - Error error; if (is.LockSeek(offset, IgnoreError())) { return is.GetOffset(); } else { |