remove unused variable

This commit is contained in:
Stephen Birarda 2015-07-17 15:59:39 -07:00
parent 39272652e5
commit 331bb54144

View file

@ -132,7 +132,7 @@ int InboundAudioStream::parseData(NLPacket& packet) {
if (packet.getType() == PacketType::SilentAudioFrame) {
writeDroppableSilentSamples(networkSamples);
} else {
int audioBytes = parseAudioData(packet.getType(), packet.read(packet.bytesLeftToRead()), networkSamples);
parseAudioData(packet.getType(), packet.read(packet.bytesLeftToRead()), networkSamples);
}
break;
}