svn commit: r349565 - head/stand/efi/libefi

Toomas Soome tsoome at FreeBSD.org
Sun Jun 30 20:18:32 UTC 2019


Author: tsoome
Date: Sun Jun 30 20:18:31 2019
New Revision: 349565
URL: https://svnweb.freebsd.org/changeset/base/349565

Log:
  efihttp: comparison of integers of different signs
  
  message.HeaderCount is UINTN (unsigned int), so should be i.

Modified:
  head/stand/efi/libefi/efihttp.c

Modified: head/stand/efi/libefi/efihttp.c
==============================================================================
--- head/stand/efi/libefi/efihttp.c	Sun Jun 30 20:15:02 2019	(r349564)
+++ head/stand/efi/libefi/efihttp.c	Sun Jun 30 20:18:31 2019	(r349565)
@@ -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;
 


More information about the svn-src-head mailing list