Fix warning about compare of signed and unsigned

This commit is contained in:
Henrik Andersson 2017-10-17 09:56:54 +02:00
parent 036f0fbebe
commit c99eb954d3

View File

@ -1449,7 +1449,8 @@ void
hexdump(unsigned char *p, unsigned int len)
{
unsigned char *line = p;
int i, thisline, offset = 0;
unsigned offset = 0;
int i, thisline;
while (offset < len)
{