summaryrefslogtreecommitdiff
path: root/include/variables.h
diff options
context:
space:
mode:
authorPeter Jones <pjones@redhat.com>2021-01-29 15:11:18 -0500
committerPeter Jones <pmjones@gmail.com>2021-01-29 18:24:57 -0500
commit0789f48d70b7593808f18dc4f1dbce2ca67df0f4 (patch)
treee8225c9aed99b2f73e573c80027b1a8b2e7509dc /include/variables.h
parent5e3d9cd9985d700a871e329cea90721532888adf (diff)
downloadefi-boot-shim-0789f48d70b7593808f18dc4f1dbce2ca67df0f4.tar.gz
efi-boot-shim-0789f48d70b7593808f18dc4f1dbce2ca67df0f4.zip
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 <pjones@redhat.com>
Diffstat (limited to 'include/variables.h')
-rw-r--r--include/variables.h4
1 files changed, 2 insertions, 2 deletions
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 <efiauthenticated.h>
-#include <PeImage.h> /* 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); \