From 4b2921acb02b3a902224eee754d0d671a025e8ea Mon Sep 17 00:00:00 2001 From: Anthony Kava Date: Fri, 19 Jan 2024 16:35:03 -0600 Subject: [PATCH] Fix minor typos in debug logging for opcode 0x28 (#905) --- trunk-recorder/systems/p25_parser.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trunk-recorder/systems/p25_parser.cc b/trunk-recorder/systems/p25_parser.cc index fafa096a7..6f6a8efb5 100644 --- a/trunk-recorder/systems/p25_parser.cc +++ b/trunk-recorder/systems/p25_parser.cc @@ -635,7 +635,7 @@ std::vector P25Parser::decode_tsbk(boost::dynamic_bitset<> &tsbk, message.source = ta; message.talkgroup = ga; - BOOST_LOG_TRIVIAL(debug) << "tsbk2f\tUnit Group Affiliation\tSource ID: " << std::setw(7) << ta << "\tGroup Address: " << std::dec << ga << "\tAnouncement Goup: " << aga; + BOOST_LOG_TRIVIAL(debug) << "tsbk28\tUnit Group Affiliation\tSource ID: " << std::setw(7) << ta << "\tGroup Address: " << std::dec << ga << "\tAnnouncement Group: " << aga; } else if (opcode == 0x29) { // Secondary Control Channel Broadcast - Explicit unsigned long rfid = bitset_shift_mask(tsbk, 72, 0xff); unsigned long stid = bitset_shift_mask(tsbk, 64, 0xff);