Fix forbidden conversion in remote.cpp

Conversion from std::string to char* is forbidden in ISO C++.
This commit is contained in:
Lucas 2018-04-03 18:55:43 +02:00 committed by Rafael Kitover
parent edb2fd2601
commit 62e8098f5b
1 changed files with 1 additions and 1 deletions

View File

@ -1526,7 +1526,7 @@ void debuggerReadCharTable(int n, char** args)
} else
wordSymbol[slot] = character;
} else
wordSymbol[slot] = " ";
wordSymbol[slot] = ' ';
if (largestSymbol < strlen(character))
largestSymbol = strlen(character);