From fed2e66d4fcd9cf801bc26943b28db425433a720 Mon Sep 17 00:00:00 2001 From: Bryan Biedenkapp Date: Sun, 19 Feb 2023 13:06:43 -0500 Subject: [PATCH] fix compilation error due to missing variable when NXDN is enabled; --- host/Host.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/host/Host.cpp b/host/Host.cpp index ed054ea8..697136b6 100644 --- a/host/Host.cpp +++ b/host/Host.cpp @@ -571,7 +571,7 @@ int Host::run() nxdn = std::unique_ptr(new nxdn::Control(m_authoritative, m_nxdnRAN, callHang, m_nxdnQueueSizeBytes, m_timeout, m_rfTalkgroupHang, m_modem, m_network, m_duplex, m_ridLookup, m_tidLookup, m_idenTable, rssi, nxdnDumpRcchData, nxdnDebug, nxdnVerbose)); - nxdn->setOptions(m_conf, m_cwCallsign, m_voiceChNo, m_siteId, m_channelId, m_channelNo, true); + nxdn->setOptions(m_conf, m_cwCallsign, m_voiceChNo, m_voiceChData, m_siteId, m_channelId, m_channelNo, true); if (nxdnCtrlChannel) { nxdn->setCCRunning(true);