mirror of
https://github.com/oSumAtrIX/free-librespot.git
synced 2025-12-19 18:04:20 +00:00
Fix compiling error
This commit is contained in:
parent
be6fff8cce
commit
6a0657fec6
1 changed files with 1 additions and 1 deletions
|
|
@ -51,7 +51,7 @@ impl Codec for APCodec {
|
||||||
|
|
||||||
self.encode_cipher.encrypt(&mut buf[offset..]);
|
self.encode_cipher.encrypt(&mut buf[offset..]);
|
||||||
|
|
||||||
let mac = [0u8; MAC_SIZE];
|
let mut mac = [0u8; MAC_SIZE];
|
||||||
self.encode_cipher.finish(&mut mac);
|
self.encode_cipher.finish(&mut mac);
|
||||||
buf.extend_from_slice(&mac);
|
buf.extend_from_slice(&mac);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue