1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-28 16:43:09 +00:00

efihttp: comparison of integers of different signs

message.HeaderCount is UINTN (unsigned int), so should be i.
This commit is contained in:
Toomas Soome 2019-06-30 20:18:31 +00:00
parent 5bca29b882
commit f7ae06cb5e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=349565

View File

@ -396,7 +396,7 @@ _efihttp_fs_open(const char *path, struct open_file *f)
struct open_efihttp *oh;
struct file_efihttp *fh;
EFI_STATUS status;
int i;
UINTN i;
int polltime;
bool done;