Fix a compiler warning about signed vs unsigned compare.

This commit is contained in:
Ian Lepore 2013-09-01 14:06:57 +00:00
parent 1d64933fe2
commit dbcdf3225a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=255122

View File

@ -39,7 +39,7 @@ void
load_file(const char *fname, uint8_t **pptr, uint32_t *plen)
{
uint8_t *ptr;
uint32_t len;
ssize_t len;
off_t off;
int f;