From c750e8cd13ab241eee791f57dcb77e7368a66377 Mon Sep 17 00:00:00 2001 From: Quincey Koziol Date: Fri, 19 Apr 2024 18:38:27 -0500 Subject: [PATCH] Fix order of header file inclusion Signed-off-by: Quincey Koziol --- utils/mirror_vfd/mirror_writer.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/utils/mirror_vfd/mirror_writer.c b/utils/mirror_vfd/mirror_writer.c index 248228cf610..f491a365048 100644 --- a/utils/mirror_vfd/mirror_writer.c +++ b/utils/mirror_vfd/mirror_writer.c @@ -21,6 +21,10 @@ * file. This is reflected in the source (H5FDmirror.c) of the Mirror driver. */ +#include "mirror_remote.h" + +#ifdef H5_HAVE_MIRROR_VFD + /* * This file needs to access private information from the H5FD package. * This file also needs to access the file testing code. @@ -29,10 +33,6 @@ #define H5FD_TESTING #include "H5FDpkg.h" /* File Drivers */ -#include "mirror_remote.h" - -#ifdef H5_HAVE_MIRROR_VFD - #define HEXDUMP_XMITS 1 /* Toggle whether to print xmit bytes-blob */ /* in detailed logging */ #define HEXDUMP_WRITEDATA 0 /* Toggle whether to print bytes to write */