Use 8 spaces as empty callsign as that is the case for the rest of the

code as well
This commit is contained in:
phl0
2016-04-16 22:31:49 +02:00
parent d0f9ae0531
commit b8a74c0340

View File

@@ -203,7 +203,7 @@ bool CDStarControl::writeModem(unsigned char *data)
m_rfState = RS_RF_AUDIO;
if (m_netState == RS_NET_IDLE)
m_display->writeDStar((char*)my1, (char*)my2, (char*)your, "R", "");
m_display->writeDStar((char*)my1, (char*)my2, (char*)your, "R", " ");
LogMessage("D-Star, received RF header from %8.8s/%4.4s to %8.8s", my1, my2, your);
} else if (type == TAG_EOT) {
@@ -374,7 +374,7 @@ bool CDStarControl::writeModem(unsigned char *data)
m_rfN = (m_rfN + 1U) % 21U;
if (m_netState == RS_NET_IDLE)
m_display->writeDStar((char*)my1, (char*)my2, (char*)your, "R", "");
m_display->writeDStar((char*)my1, (char*)my2, (char*)your, "R", " ");
LogMessage("D-Star, received RF late entry from %8.8s/%4.4s to %8.8s", my1, my2, your);
}