1
0
Fork 0
forked from lthn/blockchain

fixed warnings for paindroid platofrm

This commit is contained in:
cryptozoidberg 2020-02-23 07:07:20 +01:00
parent 254a2dcb6e
commit 1749040cd4
No known key found for this signature in database
GPG key ID: 22DEB97A54C6FDEC

View file

@ -590,7 +590,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] == 0x7 || buf[i] == 0x95)
buf[i] = '^';
}