mirror of
https://github.com/g4klx/DMRGateway.git
synced 2026-01-21 07:40:16 +01:00
Fix compile issue.
This commit is contained in:
parent
996eacb1e1
commit
82f1053d9d
|
|
@ -2184,7 +2184,7 @@ void CDMRGateway::processTalkerAlias()
|
|||
{
|
||||
unsigned char buffer[50U];
|
||||
unsigned int length;
|
||||
ret = m_repeater->readTalkerAlias(buffer, length);
|
||||
bool ret = m_repeater->readTalkerAlias(buffer, length);
|
||||
if (!ret)
|
||||
return;
|
||||
|
||||
|
|
@ -2211,7 +2211,7 @@ void CDMRGateway::processHomePosition()
|
|||
{
|
||||
unsigned char buffer[50U];
|
||||
unsigned int length;
|
||||
ret = m_repeater->readHomePosition(buffer, length);
|
||||
bool ret = m_repeater->readHomePosition(buffer, length);
|
||||
if (!ret)
|
||||
return;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue