Fix a cast for msvc compilers

This commit is contained in:
ZachBacon 2018-06-06 04:44:05 -04:00
parent 07bc2ee4cb
commit cafe905b6d
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] = (char*)' ';
if (largestSymbol < strlen(character))
largestSymbol = strlen(character);