From 0789f48d70b7593808f18dc4f1dbce2ca67df0f4 Mon Sep 17 00:00:00 2001 From: Peter Jones Date: Fri, 29 Jan 2021 15:11:18 -0500 Subject: Always use lower case for our local include file names. clang-format doesn't allow you to specify an include sort order, and just assumes asciibetical is a pretty good order, which doesn't work as well as you would hope. This makes them all lower case so they don't need to be re-sorted. I also went through and checked that we're using quoted local includes at all the appropriate places. Signed-off-by: Peter Jones --- include/variables.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/variables.h') diff --git a/include/variables.h b/include/variables.h index 436adb46..ee746ff6 100644 --- a/include/variables.h +++ b/include/variables.h @@ -1,8 +1,8 @@ #ifndef SHIM_VARIABLES_H #define SHIM_VARIABLES_H -#include -#include /* for SHA256_DIGEST_SIZE */ +#include "efiauthenticated.h" +#include "pe.h" /* for SHA256_DIGEST_SIZE */ #define certlist_for_each_certentry(cl, cl_init, s, s_init) \ for (cl = (EFI_SIGNATURE_LIST *)(cl_init), s = (s_init); \ -- cgit v1.2.3