mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-12-27 13:34:00 +01:00
Fix a compiler warning about signed vs unsigned compare.
This commit is contained in:
parent
1d64933fe2
commit
dbcdf3225a
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=255122
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user