From 8fb54e801f64eb50ab2702930d412f80e0fd8f6b Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Sat, 15 Apr 2023 21:18:12 +0100 Subject: util/nvmutil: sort includes alphabetically small nitpick, but i try to use openbsd style since i like that style. upon further reading of their style guidelines today, it was revealed to me that for includes, they: * sort sys/ includes alphabetically, at the top * after sys/ includes, have an empty line * includes for networking-related headers below that * empty space below networking headers if there * after that, have the rest of the includes, sorted alphabetically at least, that is my understanding. i have to admit, it does look cleaner not really that critical but why not do it? --- util/nvmutil/nvmutil.c | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/util/nvmutil/nvmutil.c b/util/nvmutil/nvmutil.c index d7d3fa6..a489dd8 100644 --- a/util/nvmutil/nvmutil.c +++ b/util/nvmutil/nvmutil.c @@ -26,16 +26,17 @@ * https://libreboot.org/docs/install/nvmutil.html */ -#include -#include -#include -#include -#include #include -#include -#include + #include #include +#include +#include +#include +#include +#include +#include +#include void readGbeFile(int *fd, const char *path, int flags, size_t nr); -- cgit v1.2.1