mirror of
https://github.com/monero-project/monero.git
synced 2026-01-31 16:54:45 +01:00
ARM chars are unsigned
This commit is contained in:
@@ -419,7 +419,7 @@ namespace log_space
|
||||
std::string buf(buffer, buffer_len);
|
||||
for(size_t i = 0; i!= buf.size(); i++)
|
||||
{
|
||||
if(buf[i] == 7 || buf[i] == -107)
|
||||
if(buf[i] == 7 || (buf[i]&0xff) == 0x95)
|
||||
buf[i] = '^';
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user