mirror of
https://github.com/g4klx/DMRGateway
synced 2025-12-22 22:45:36 +08:00
Fix compile issue.
This commit is contained in:
@@ -2184,7 +2184,7 @@ void CDMRGateway::processTalkerAlias()
|
|||||||
{
|
{
|
||||||
unsigned char buffer[50U];
|
unsigned char buffer[50U];
|
||||||
unsigned int length;
|
unsigned int length;
|
||||||
ret = m_repeater->readTalkerAlias(buffer, length);
|
bool ret = m_repeater->readTalkerAlias(buffer, length);
|
||||||
if (!ret)
|
if (!ret)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
@@ -2211,7 +2211,7 @@ void CDMRGateway::processHomePosition()
|
|||||||
{
|
{
|
||||||
unsigned char buffer[50U];
|
unsigned char buffer[50U];
|
||||||
unsigned int length;
|
unsigned int length;
|
||||||
ret = m_repeater->readHomePosition(buffer, length);
|
bool ret = m_repeater->readHomePosition(buffer, length);
|
||||||
if (!ret)
|
if (!ret)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user