mirror of
https://github.com/portapack-mayhem/mayhem-firmware.git
synced 2025-04-21 20:01:29 +00:00
Merge pull request #279 from GullCode/proc_capture_warning_fix
fix unused result
This commit is contained in:
commit
5ca7398bd9
@ -44,7 +44,11 @@ void CaptureProcessor::execute(const buffer_c8_t& buffer) {
|
|||||||
|
|
||||||
if( stream ) {
|
if( stream ) {
|
||||||
const size_t bytes_to_write = sizeof(*decimator_out.p) * decimator_out.count;
|
const size_t bytes_to_write = sizeof(*decimator_out.p) * decimator_out.count;
|
||||||
const auto result = stream->write(decimator_out.p, bytes_to_write);
|
const size_t written = stream->write(decimator_out.p, bytes_to_write);
|
||||||
|
if( written != bytes_to_write )
|
||||||
|
{
|
||||||
|
//TODO eventually report error somewhere
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
feed_channel_stats(channel);
|
feed_channel_stats(channel);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user