summaryrefslogtreecommitdiff
path: root/util/nvmutil
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2026-03-10 09:15:55 +0000
committerLeah Rowe <leah@libreboot.org>2026-03-10 09:15:55 +0000
commit630852b7bed89189e970c603f4b24dc42c66238f (patch)
treef6b5d0b093fa64e2fee0d2199d402c213d0e19ca /util/nvmutil
parente9a593b2c0b0bbe9b1827d32a2706b9c22ff7b1c (diff)
util/nvmutil: fix indent on ifdefs
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'util/nvmutil')
-rw-r--r--util/nvmutil/nvmutil.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/util/nvmutil/nvmutil.c b/util/nvmutil/nvmutil.c
index 1606eec6..3f23d7c3 100644
--- a/util/nvmutil/nvmutil.c
+++ b/util/nvmutil/nvmutil.c
@@ -34,15 +34,15 @@
#include <limits.h>
#include <stdarg.h>
#if defined(__has_include)
-# if __has_include(<stdint.h>)
-# include <stdint.h>
-# else
+#if __has_include(<stdint.h>)
+#include <stdint.h>
+#else
typedef unsigned char uint8_t;
typedef unsigned short uint16_t;
typedef unsigned int uint32_t;
-# endif
+#endif
#elif defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
-# include <stdint.h>
+#include <stdint.h>
#else
typedef unsigned char uint8_t;
typedef unsigned short uint16_t;