mirror of
https://github.com/g4klx/DMRGateway.git
synced 2026-04-05 22:45:28 +00:00
Fix compile issue.
This commit is contained in:
parent
996eacb1e1
commit
82f1053d9d
1 changed files with 2 additions and 2 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue