File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ constexpr uint64_t source_id = 1002;
5757void
5858fake_sequence_id (uint64_t & seq_id)
5959{
60- seq_id = seq_id == max_seq_id ? 0 : ++ seq_id;
60+ seq_id = ( seq_id == max_seq_id ? 0 : seq_id+ 1 ) ;
6161}
6262
6363/* *
@@ -163,7 +163,7 @@ CRTBernReaderModule::init(const std::shared_ptr<appfwk::ConfigurationManager> mf
163163}
164164
165165void
166- CRTBernReaderModule::do_conf (const nlohmann::json& obj)
166+ CRTBernReaderModule::do_conf (const nlohmann::json& /* obj*/ )
167167{
168168 // Configure HW interface?
169169 if (!m_run_marker.load ()) {
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ constexpr uint64_t source_id = 1001;
5757void
5858fake_sequence_id (uint64_t & seq_id)
5959{
60- seq_id = seq_id == max_seq_id ? 0 : ++ seq_id;
60+ seq_id = ( seq_id == max_seq_id ? 0 : seq_id+ 1 ) ;
6161}
6262
6363/* *
@@ -163,7 +163,7 @@ CRTGrenobleReaderModule::init(const std::shared_ptr<appfwk::ConfigurationManager
163163}
164164
165165void
166- CRTGrenobleReaderModule::do_conf (const nlohmann::json& obj)
166+ CRTGrenobleReaderModule::do_conf (const nlohmann::json& /* obj*/ )
167167{
168168 // Configure HW interface?
169169 if (!m_run_marker.load ()) {
You can’t perform that action at this time.
0 commit comments