Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 30 Jun 2019 20:18:32 +0000 (UTC)
From:      Toomas Soome <tsoome@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r349565 - head/stand/efi/libefi
Message-ID:  <201906302018.x5UKIWeT011820@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201906302018.x5UKIWeT011820>