From bbd72df6fc9e3526f8f9d145099b548573eca244 Mon Sep 17 00:00:00 2001 From: Carsten Schmiemann Date: Fri, 29 Jul 2022 19:28:25 +0200 Subject: [PATCH] Add one byte to DMR ID lookup --- DMRLookup.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DMRLookup.cpp b/DMRLookup.cpp index 413a950..44a55f5 100644 --- a/DMRLookup.cpp +++ b/DMRLookup.cpp @@ -92,7 +92,7 @@ void CDMRLookup::stop() void CDMRLookup::findWithName(unsigned int id, class CUserDBentry *entry) { - if (id == 0xFFFFFFU) { + if (id == 0xFFFFFFFU) { entry->clear(); entry->set(keyCALLSIGN, "ALL"); return; @@ -115,7 +115,7 @@ std::string CDMRLookup::find(unsigned int id) { std::string callsign; - if (id == 0xFFFFFFU) + if (id == 0xFFFFFFFU) return std::string("ALL"); class CUserDBentry entry;