From cfaca42028bc5284674a625a5017ad60b91546b4 Mon Sep 17 00:00:00 2001 From: Cem Keylan Date: Thu, 28 Apr 2022 01:34:37 +0200 Subject: efivar: bump to 38 The new patch can be hacky, and I didn't properly test the outcome. Should technically be working fine, but give me a heads up if it isn't working as expected. --- ...-fdb803402fb32fa6d020bac57a40c7efe4aabb7d.patch | 31 ---------------------- 1 file changed, 31 deletions(-) delete mode 100644 extra/efivar/patches/04-fdb803402fb32fa6d020bac57a40c7efe4aabb7d.patch (limited to 'extra/efivar/patches/04-fdb803402fb32fa6d020bac57a40c7efe4aabb7d.patch') diff --git a/extra/efivar/patches/04-fdb803402fb32fa6d020bac57a40c7efe4aabb7d.patch b/extra/efivar/patches/04-fdb803402fb32fa6d020bac57a40c7efe4aabb7d.patch deleted file mode 100644 index 513c0e73..00000000 --- a/extra/efivar/patches/04-fdb803402fb32fa6d020bac57a40c7efe4aabb7d.patch +++ /dev/null @@ -1,31 +0,0 @@ -From fdb803402fb32fa6d020bac57a40c7efe4aabb7d Mon Sep 17 00:00:00 2001 -From: Javier Martinez Canillas -Date: Tue, 5 Mar 2019 17:23:24 +0100 -Subject: [PATCH] ucs2.h: remove unused variable - -The const uint16_t pointer is not used since now the two bytes of the -UCS-2 chars are checked to know if is the termination of the string. - -Signed-off-by: Javier Martinez Canillas ---- - src/ucs2.h | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - -diff --git a/src/ucs2.h b/src/ucs2.h -index edd8367..e0390c3 100644 ---- a/src/ucs2.h -+++ b/src/ucs2.h -@@ -26,12 +26,11 @@ static inline size_t UNUSED - ucs2len(const void *vs, ssize_t limit) - { - ssize_t i; -- const uint16_t *s = vs; - const uint8_t *s8 = vs; - - for (i = 0; - i < (limit >= 0 ? limit : i+1) && s8[0] != 0 && s8[1] != 0; -- i++, s8 += 2, s++) -+ i++, s8 += 2) - ; - return i; - } -- cgit v1.2.3