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:
parent
b7063f3f3a
commit
fa7d3cb2e9
1 changed files with 1 additions and 1 deletions
|
|
@ -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";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue