Fix compile error (could have sworn I already did this!)

This commit is contained in:
Tony Corbett G0WFV
2016-06-17 23:04:10 +01:00
parent 87b4bcebef
commit 6a17fee980

View File

@@ -434,8 +434,8 @@ void CHD44780::writeDStarInt(const char* my1, const char* my2, const char* your,
char *p = m_buffer1; char *p = m_buffer1;
for (; *p; ++p) { for (; *p; ++p) {
if (*p == " ") if (*p == ' ')
*p = "_"; *p = '_';
} }
if (strcmp(reflector, " ") != 0) { if (strcmp(reflector, " ") != 0) {