1
0
Fork 0
mirror of https://github.com/eosswedenorg/libantelope synced 2026-06-16 03:34:56 +02:00

src/ec.cpp: fix integer size comparison warning.

This commit is contained in:
Henrik Hautakoski 2023-04-10 17:23:42 +02:00
parent b7063f3f3a
commit fa7d3cb2e9

View file

@ -25,7 +25,7 @@
std::ostream& _hex(std::ostream& os, const unsigned char *b, std::size_t sz) {
os << "[ " << std::hex;
for (int i = 0; i < sz; i++) {
for (std::size_t i = 0; i < sz; i++) {
unsigned int v = b[i];
os << "0x";