aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Berndt <lukekb@gmail.com>2023-05-11 08:20:51 -0400
committerLuke Berndt <lukekb@gmail.com>2023-05-11 08:20:51 -0400
commit0dbe2f3e3974b3e959394452f7fec808e7d0f470 (patch)
treeecd7ab9e7438bf52596f99f0d594213f348051cf
parent093c9a01c32b6ec5410155ea2030cb2d56e98134 (diff)
Just because the Branch compiles... doesn't mean the merge will!master
-rw-r--r--trunk-recorder/main.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/trunk-recorder/main.cc b/trunk-recorder/main.cc
index 26652832..b41b92f5 100644
--- a/trunk-recorder/main.cc
+++ b/trunk-recorder/main.cc
@@ -1356,7 +1356,7 @@ void retune_system(System *sys) {
// We must lock the flow graph in order to disconnect and reconnect blocks
tb->lock();
tb->disconnect(current_source->get_src_block(), 0, system->smartnet_trunking, 0);
- system->smartnet_trunking = make_smartnet_trunking(control_channel_freq, source->get_center(), source->get_rate(), msg_queue, system->get_sys_num());
+ system->smartnet_trunking = make_smartnet_trunking(control_channel_freq, source->get_center(), source->get_rate(), system->get_msg_queue(), system->get_sys_num());
tb->connect(source->get_src_block(), 0, system->smartnet_trunking, 0);
tb->unlock();
system->smartnet_trunking->reset();
@@ -1365,7 +1365,7 @@ void retune_system(System *sys) {
// We must lock the flow graph in order to disconnect and reconnect blocks
tb->lock();
tb->disconnect(current_source->get_src_block(), 0, system->p25_trunking, 0);
- system->p25_trunking = make_p25_trunking(control_channel_freq, source->get_center(), source->get_rate(), msg_queue, system->get_qpsk_mod(), system->get_sys_num());
+ system->p25_trunking = make_p25_trunking(control_channel_freq, source->get_center(), source->get_rate(), system->get_msg_queue(), system->get_qpsk_mod(), system->get_sys_num());
tb->connect(source->get_src_block(), 0, system->p25_trunking, 0);
tb->unlock();
} else {