diff --git a/src/algorithms/signal_source/adapters/two_bit_packed_file_signal_source.cc b/src/algorithms/signal_source/adapters/two_bit_packed_file_signal_source.cc index d693df215..ebcb95d96 100644 --- a/src/algorithms/signal_source/adapters/two_bit_packed_file_signal_source.cc +++ b/src/algorithms/signal_source/adapters/two_bit_packed_file_signal_source.cc @@ -105,7 +105,10 @@ std::tuple TwoBitPackedFileSignalSource::itemTypeToSize() double TwoBitPackedFileSignalSource::packetsPerSample() const { auto packets = item_size() * 4.0; - if (is_complex()) packets /= 2; + if (is_complex()) + { + packets /= 2; + } return packets; }