mirror of
https://github.com/g4klx/DMRGateway
synced 2025-12-23 14:56:11 +08:00
Update the C++ code.
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (C) 2017,2020 by Jonathan Naylor G4KLX
|
||||
* Copyright (C) 2017,2020,2025 by Jonathan Naylor G4KLX
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -43,7 +43,7 @@ PROCESS_RESULT CRewriteSrcId::process(CDMRData& data, bool trace)
|
||||
if (trace)
|
||||
LogDebug("Rule Trace,\tRewriteSrcId from %s Src=%u: not matched", m_name.c_str(), m_fromId);
|
||||
|
||||
return RESULT_UNMATCHED;
|
||||
return PROCESS_RESULT::UNMATCHED;
|
||||
}
|
||||
|
||||
data.setSrcId(m_toId);
|
||||
@@ -55,5 +55,5 @@ PROCESS_RESULT CRewriteSrcId::process(CDMRData& data, bool trace)
|
||||
LogDebug("Rule Trace,\tRewriteSrcId to %s Src=%u", m_name.c_str(), m_toId);
|
||||
}
|
||||
|
||||
return RESULT_MATCHED;
|
||||
return PROCESS_RESULT::MATCHED;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user