More dumb linux bugfix

pull/801/head
AlexandreRouma 2022-06-17 18:01:27 +02:00
rodzic cb59b04b17
commit 4f601405a1
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -27,12 +27,12 @@ namespace dsp::routing {
}
int run() {
int count = _in->read();
int count = base_type::_in->read();
if (count < 0) { return -1; }
memcpy(_out->writeBuf, _in->readBuf, count * sizeof(T));
memcpy(_out->writeBuf, base_type::_in->readBuf, count * sizeof(T));
_in->flush();
base_type::_in->flush();
if (!_out->swap(count)) { return -1; }
return count;
}