mirror of
https://github.com/badaix/snapcast.git
synced 2025-05-15 18:16:44 +02:00
removed unused var
This commit is contained in:
parent
9fe702ae39
commit
1fa9d3fa71
1 changed files with 0 additions and 1 deletions
|
@ -102,7 +102,6 @@ void StreamSession::socketRead(void* _to, size_t _bytes)
|
||||||
size_t read = 0;
|
size_t read = 0;
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
std::error_code error;
|
|
||||||
read += socket_->read_some(asio::buffer((char*)_to + read, _bytes - read));
|
read += socket_->read_some(asio::buffer((char*)_to + read, _bytes - read));
|
||||||
}
|
}
|
||||||
while (active_ && (read < _bytes));
|
while (active_ && (read < _bytes));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue