summaryrefslogtreecommitdiff
path: root/lib/shell.c
diff options
context:
space:
mode:
authorPeter Jones <pjones@redhat.com>2015-02-25 16:33:59 -0500
committerPeter Jones <pjones@redhat.com>2015-04-13 19:55:25 -0400
commit7fdbd9d48a4e447d4ea42268afb80a1ee84b633b (patch)
treeeb2616cc6b941d7d2688554d88e2fbe7e0447c13 /lib/shell.c
parent6b2510522f92026dc17e1c5508bbfab935741012 (diff)
downloadefi-boot-shim-7fdbd9d48a4e447d4ea42268afb80a1ee84b633b.tar.gz
efi-boot-shim-7fdbd9d48a4e447d4ea42268afb80a1ee84b633b.zip
Make lib/ build right with the cflags it should be using...
... but isn't. Signed-off-by: Peter Jones <pjones@redhat.com>
Diffstat (limited to 'lib/shell.c')
-rw-r--r--lib/shell.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/shell.c b/lib/shell.c
index 7337834a..afd3952c 100644
--- a/lib/shell.c
+++ b/lib/shell.c
@@ -13,7 +13,7 @@
EFI_STATUS
argsplit(EFI_HANDLE image, int *argc, CHAR16*** ARGV)
{
- int i, count = 1;
+ unsigned int i, count = 1;
EFI_STATUS status;
EFI_LOADED_IMAGE *info;
CHAR16 *start;