From 53b1c6ba62c3d74fb8ef9e1529cc28eedcb18d24 Mon Sep 17 00:00:00 2001 From: PartialVolume Date: Fri, 8 Nov 2019 18:00:24 +0000 Subject: [PATCH] Fix order of include files in options.c After running clang on options.c the includes were reordered. This caused the compilation to fail with multiple errors. --- src/options.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/options.c b/src/options.c index dc00eec..ef5e4e1 100644 --- a/src/options.c +++ b/src/options.c @@ -20,12 +20,12 @@ * */ -#include "options.h" -#include "context.h" -#include "logging.h" -#include "method.h" #include "nwipe.h" +#include "context.h" +#include "method.h" #include "prng.h" +#include "options.h" +#include "logging.h" #include "version.h" /* The global options struct. */