From 34e769c22f8859c13f9d615b05a0f9a5eaf05b87 Mon Sep 17 00:00:00 2001 From: Pete Batard Date: Thu, 16 May 2024 12:43:43 +0100 Subject: [PATCH] Switch to new official GitHub based gnu-efi * Also fix a couple typos --- .gitmodules | 2 +- gnu-efi | 2 +- src/console.c | 2 +- src/parse.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitmodules b/.gitmodules index ecf8d55..d93643e 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ [submodule "gnu-efi"] path = gnu-efi - url = https://github.com/pbatard/gnu-efi.git + url = https://github.com/ncroxon/gnu-efi.git diff --git a/gnu-efi b/gnu-efi index 4c0ed76..ccfe185 160000 --- a/gnu-efi +++ b/gnu-efi @@ -1 +1 @@ -Subproject commit 4c0ed769d4ed94f931ad0a58a301d2212d439419 +Subproject commit ccfe18558cc2ac91f31c9738c90e7d27d833e517 diff --git a/src/console.c b/src/console.c index e57fe16..142be6b 100644 --- a/src/console.c +++ b/src/console.c @@ -1,5 +1,5 @@ /* - * uefi-md5sum: UEFI MD5Sum validator - gConsole related functions + * uefi-md5sum: UEFI MD5Sum validator - Console related functions * Copyright © 2024 Pete Batard * * This program is free software: you can redistribute it and/or modify diff --git a/src/parse.c b/src/parse.c index bc0658d..a8dd7cc 100644 --- a/src/parse.c +++ b/src/parse.c @@ -131,7 +131,7 @@ EFI_STATUS Parse( goto out; } - // Allocate a array of hash entries + // Allocate an array of hash entries HashList = AllocateZeroPool(NumLines * sizeof(HASH_ENTRY)); if (HashList == NULL) { Status = EFI_OUT_OF_RESOURCES;